diff options
| author | Luke Dashjr <[email protected]> | 2018-11-27 17:46:20 +0000 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-06-18 09:34:06 -0400 |
| commit | 832eb4ff54aebf86e5e0a4794ee46cf3f8b470ae (patch) | |
| tree | cd2b5b623200eced7332b3966373eb16df0bd341 /test | |
| parent | Bugfix: test/functional/rpc_psbt: Remove check for specific error message tha... (diff) | |
| download | discoin-832eb4ff54aebf86e5e0a4794ee46cf3f8b470ae.tar.xz discoin-832eb4ff54aebf86e5e0a4794ee46cf3f8b470ae.zip | |
Bugfix: test/functional/rpc_psbt: Correct test description comment
Github-Pull: #14818
Rebased-From: c87fc71f7e9316bcc0653cd86c50177424b5b1f9
Diffstat (limited to 'test')
| -rwxr-xr-x | test/functional/rpc_psbt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py index 4b0480bf1..84acd9c82 100755 --- a/test/functional/rpc_psbt.py +++ b/test/functional/rpc_psbt.py @@ -144,7 +144,7 @@ class PSBTTest(BitcoinTestFramework): new_psbt = self.nodes[0].converttopsbt(rawtx['hex']) self.nodes[0].decodepsbt(new_psbt) - # Make sure that a psbt with signatures cannot be converted + # Make sure that a non-psbt with signatures cannot be converted # Error could be either "TX decode failed" (segwit inputs causes parsing to fail) or "Inputs must not have scriptSigs and scriptWitnesses" signedtx = self.nodes[0].signrawtransactionwithwallet(rawtx['hex']) assert_raises_rpc_error(-22, "", self.nodes[0].converttopsbt, signedtx['hex']) |