fix: validator args unexpectedly unbound

closes #852
This commit is contained in:
rvcas
2024-03-06 14:15:00 -05:00
parent ad4840958c
commit 25ebdc2527
6 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
use aiken/transaction.{ScriptContext}
validator {
fn is_fourty_two(dat, rdm, _ctx: ScriptContext) -> Bool {
rdm == dat && #"68656c6c6f20776f726c64" == #"68656c6c6f20776f726c64"
}
}