mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
Merge ElementsProject/elements#1017: test: update createrawtransaction call in feature_taphash_pegins_issuances.py
1c883db83etest: update `createrawtransaction` call in feature_taphash_pegins_issuances.py (Andrew Poelstra) Pull request description: 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.) Fixes functional tests which were broken in master by simultaneous merge of #1002 and #900. ACKs for top commit: stevenroose: utACK1c883db83eTree-SHA512: f7963c34e7006a25ac5515e30966ef46777fa22d6125d219345731aef603e5f3179fc316134d59694af8e753f7cb48c825ad3434f2bceda0a10b8d5a52c32cd3
This commit is contained in:
commit
aad04d0b9e
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