summaryrefslogtreecommitdiff
path: root/data/transactions/logic/export_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'data/transactions/logic/export_test.go')
-rw-r--r--data/transactions/logic/export_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/transactions/logic/export_test.go b/data/transactions/logic/export_test.go
index 34ae9d945..ed250acd8 100644
--- a/data/transactions/logic/export_test.go
+++ b/data/transactions/logic/export_test.go
@@ -1,4 +1,4 @@
-// Copyright (C) 2019-2023 Algorand, Inc.
+// Copyright (C) 2019-2024 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
@@ -60,7 +60,7 @@ var WithPanicOpcode = withPanicOpcode
// TryApps exports "testApps" while accepting a simple uint64. Annoying, we
// can't export call this "TestApps" because it looks like a Test function with
// the wrong signature. But we can get that effect with the alias below.
-func TryApps(t *testing.T, programs []string, txgroup []transactions.SignedTxn, ver uint64, ledger *Ledger, expected ...expect) *EvalParams {
+func TryApps(t *testing.T, programs []string, txgroup []transactions.SignedTxn, ver uint64, ledger *Ledger, expected ...expect) (*EvalParams, error) {
return testApps(t, programs, txgroup, protoVer(ver), ledger, expected...)
}