feat: transform TypedValidator in a function of handlers

This commit is contained in:
rvcas
2024-08-06 16:29:45 -04:00
committed by KtorZ
parent 466a4f0b39
commit 0d8d80e5a7
5 changed files with 182 additions and 51 deletions

View File

@@ -62,7 +62,7 @@ impl Validator {
modules,
module,
def,
hander,
handler,
&mut program,
plutus_version,
));

View File

@@ -479,12 +479,12 @@ impl CheckedModules {
(
left.0.package.to_string(),
left.0.name.to_string(),
left.1.fun.name.to_string(),
left.1.name.to_string(),
)
.cmp(&(
right.0.package.to_string(),
right.0.name.to_string(),
right.1.fun.name.to_string(),
right.1.name.to_string(),
))
});