* rename force_wrap to force * add a bunch of builder methods to Term<Name> * refactor one tiny location to show off builder methods * split generate into `generate` and `generate_test` * create wrap_as_multi_validator function Co-authored-by: Kasey White <kwhitemsg@gmail.com>
10 lines
120 B
Plaintext
10 lines
120 B
Plaintext
validator {
|
|
fn spend(_datum: Void, _redeemer: Void, _ctx: Void) -> Bool {
|
|
True
|
|
}
|
|
}
|
|
|
|
test foo() {
|
|
1 + 1 == 2
|
|
}
|