mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
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.)
This commit is contained in:
parent
1ba24fe9b3
commit
1c883db83e
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ class TapHashPeginTest(BitcoinTestFramework):
|
|||
|
||||
blind_addr = self.nodes[0].getnewaddress()
|
||||
nonblind_addr = self.nodes[0].validateaddress(blind_addr)['unconfidential']
|
||||
raw_tx = self.nodes[0].createrawtransaction([], {nonblind_addr: 1})
|
||||
raw_tx = self.nodes[0].createrawtransaction([], [{nonblind_addr: 1}])
|
||||
raw_tx = FromHex(CTransaction(), raw_tx)
|
||||
|
||||
# Need to taproot outputs later because fundrawtransaction cannot estimate fees
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue