remove traces from test 89

This commit is contained in:
microproofs
2024-01-25 14:24:21 -05:00
parent 115ff61abe
commit ede6c22267
2 changed files with 7 additions and 12 deletions

View File

@@ -30,22 +30,17 @@ validator(utxo_ref: OutputReference) {
let ScriptContext { transaction, purpose } = ctx
let Transaction { inputs, .. } = transaction
trace @"Here"
expect Mint(_policy_id) = purpose
trace @"Here1"
expect Some(_input) =
list.find(inputs, fn(input) { input.output_reference == utxo_ref })
trace @"Here2"
True
let input =
list.find(inputs, fn(input) { input.output_reference == utxo_ref })
when input is {
Some(_) -> True
None -> False
}
}
}