fix converttopsbt permitsigdata arg, add basic test

Github-Pull: #14356
Rebased-From: 88a79cb436
This commit is contained in:
Gregory Sanders
2018-09-29 22:09:15 -04:00
committed by MarcoFalke
parent 5d12143c73
commit 7a590d8390
2 changed files with 4 additions and 1 deletions

View File

@@ -146,6 +146,9 @@ class PSBTTest(BitcoinTestFramework):
# Make sure that a psbt with signatures cannot be converted
signedtx = self.nodes[0].signrawtransactionwithwallet(rawtx['hex'])
assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].converttopsbt, signedtx['hex'])
assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].converttopsbt, signedtx['hex'], False)
# Unless we allow it to convert and strip signatures
self.nodes[0].converttopsbt(signedtx['hex'], True)
# Explicilty allow converting non-empty txs
new_psbt = self.nodes[0].converttopsbt(rawtx['hex'])