chore: use fmt to update examples

This commit is contained in:
rvcas
2023-07-11 19:52:19 -04:00
committed by Lucas
parent 1ab1ff9a1f
commit 0be09cd9e5
4 changed files with 7 additions and 7 deletions

View File

@@ -23,11 +23,11 @@ validator {
[
when dict.get(ctx.transaction.withdrawals, alice) is {
None -> error @"alice's withdrawal not found"
None -> fail @"alice's withdrawal not found"
Some(value) -> value == 42
},
when dict.get(ctx.transaction.withdrawals, bob) is {
None -> error @"bob's withdrawal not found"
None -> fail @"bob's withdrawal not found"
Some(value) -> value == 14
},
dict.keys(ctx.transaction.withdrawals) == [alice, bob],