diff options
author | Anthony Towns <aj@erisian.com.au> | 2019-06-20 21:36:45 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2019-07-05 14:45:04 +1000 |
commit | 1dc357dabbd843da02d15316c55d63c566414069 (patch) | |
tree | 19521d4709f7340c41d927062244773ef4afd86b /src | |
parent | 629c7b029cf934932be3699da592cfbe6e146f8a (diff) |
signrawtransactionwithkey: report error when missing redeemScript/witnessScript param
Github-Pull: #16250
Rebased-From: 01174596e69568c434198a86f54cb9ea6740e6c2
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index ae4fed285a..c79ac45b01 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -886,6 +886,9 @@ UniValue SignTransaction(interfaces::Chain& chain, CMutableTransaction& mtx, con // Automatically also add the P2WSH wrapped version of the script (to deal with P2SH-P2WSH). keystore->AddCScript(GetScriptForWitness(witnessScript)); } + if (rs.isNull() && ws.isNull()) { + throw JSONRPCError(RPC_INVALID_PARAMETER, "Missing redeemScript/witnessScript"); + } } } } |