summaryrefslogtreecommitdiff
path: root/cmd/tealdbg/cdtSession_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/tealdbg/cdtSession_test.go')
-rw-r--r--cmd/tealdbg/cdtSession_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/tealdbg/cdtSession_test.go b/cmd/tealdbg/cdtSession_test.go
index 7117f97a8..864fa9937 100644
--- a/cmd/tealdbg/cdtSession_test.go
+++ b/cmd/tealdbg/cdtSession_test.go
@@ -479,7 +479,7 @@ func TestCdtSessionGetObjects(t *testing.T) {
state := cdtState{
disassembly: "version 2\nint 1",
proto: &proto,
- txnGroup: []transactions.SignedTxn{
+ txnGroup: transactions.WrapSignedTxnsWithAD([]transactions.SignedTxn{
{
Txn: transactions.Transaction{
Type: protocol.PaymentTx,
@@ -496,7 +496,7 @@ func TestCdtSessionGetObjects(t *testing.T) {
},
},
},
- },
+ }),
groupIndex: 0,
globals: globals,
stack: []basics.TealValue{{Type: basics.TealBytesType, Bytes: "test"}},