Add now-necessary type-annotations in tests

This commit is contained in:
KtorZ
2024-05-05 14:26:27 +02:00
committed by Kasey
parent a124bdbb05
commit 99c35a6459
7 changed files with 19 additions and 19 deletions

View File

@@ -9,7 +9,7 @@ validator {
}
}
fn find_stuff(context) -> Output {
fn find_stuff(context: ScriptContext) -> Output {
expect Some(stuff) = list.find(context.transaction.outputs, fn(_) { True })
stuff
}