diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-06-04 23:43:43 -0400 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-07-03 09:21:42 +0800 |
commit | 3228b59b1761a80bca6aa7309cb46db5acafc905 (patch) | |
tree | 8b92f26b142fbc3f9855fb1dfb431b2a230266f9 /test/functional | |
parent | ed5ec3080419445c0af7410c0af7a421704841a6 (diff) |
psbt: always put a non_witness_utxo and don't remove it
Offline signers will always need a non_witness_utxo so make sure it is
there.
Github-Pull: #19215
Rebased-From: 46004790588c24174a0bec49b540d158ce163ffd
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/rpc_psbt.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py index 3a63377545..285c38161c 100755 --- a/test/functional/rpc_psbt.py +++ b/test/functional/rpc_psbt.py @@ -37,6 +37,7 @@ class PSBTTest(BitcoinTestFramework): def skip_test_if_missing_module(self): self.skip_if_no_wallet() + # TODO: Re-enable this test with segwit v1 def test_utxo_conversion(self): mining_node = self.nodes[2] offline_node = self.nodes[0] @@ -326,7 +327,8 @@ class PSBTTest(BitcoinTestFramework): for i, signer in enumerate(signers): self.nodes[2].unloadwallet("wallet{}".format(i)) - self.test_utxo_conversion() + # TODO: Re-enable this for segwit v1 + # self.test_utxo_conversion() # Test that psbts with p2pkh outputs are created properly p2pkh = self.nodes[0].getnewaddress(address_type='legacy') |