Skip to content

Commit 1c883db

Browse files
committed
test: update createrawtransaction call in feature_taphash_pegins_issuances.py
Should describe the outputs as an array rather than as an object. (The old behavior has long been deprecated but was eliminated entirely in #900.)
1 parent 1ba24fe commit 1c883db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_taphash_pegins_issuances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def issuance_test(self, sighash_ty):
136136

137137
blind_addr = self.nodes[0].getnewaddress()
138138
nonblind_addr = self.nodes[0].validateaddress(blind_addr)['unconfidential']
139-
raw_tx = self.nodes[0].createrawtransaction([], {nonblind_addr: 1})
139+
raw_tx = self.nodes[0].createrawtransaction([], [{nonblind_addr: 1}])
140140
raw_tx = FromHex(CTransaction(), raw_tx)
141141

142142
# Need to taproot outputs later because fundrawtransaction cannot estimate fees

0 commit comments

Comments
 (0)