aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_psbt.py
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2018-11-27 17:46:20 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2018-11-27 17:46:20 +0000
commitc87fc71f7e9316bcc0653cd86c50177424b5b1f9 (patch)
tree25256acf897e624733bd821b98b2b39d414af5a0 /test/functional/rpc_psbt.py
parent097c4aa379f255639ce0084702693fa72a595d6b (diff)
downloadbitcoin-c87fc71f7e9316bcc0653cd86c50177424b5b1f9.tar.xz
Bugfix: test/functional/rpc_psbt: Correct test description comment
Diffstat (limited to 'test/functional/rpc_psbt.py')
-rwxr-xr-xtest/functional/rpc_psbt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py
index b48339df29..6f9f52f001 100755
--- a/test/functional/rpc_psbt.py
+++ b/test/functional/rpc_psbt.py
@@ -143,7 +143,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'])