aiken/examples/acceptance_tests/047/validators/foo.ak

14 lines
158 B
Plaintext

validator foo {
spend(_datum: Option<Void>, _redeemer: Void, oref: Data, _tx: Void) {
True
}
else(_) {
fail
}
}
test foo() {
1 + 1 == 2
}