From 1c883db83ea564129cf0241797ea231b81e7f744 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Fri, 9 Jul 2021 20:31:24 +0000 Subject: [PATCH] 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.) --- test/functional/feature_taphash_pegins_issuances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_taphash_pegins_issuances.py b/test/functional/feature_taphash_pegins_issuances.py index 77cfc5ff972..ffeae7fd1e5 100755 --- a/test/functional/feature_taphash_pegins_issuances.py +++ b/test/functional/feature_taphash_pegins_issuances.py @@ -136,7 +136,7 @@ def issuance_test(self, sighash_ty): 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