diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-10-13 15:21:03 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-10-13 14:57:52 +0200 |
commit | 33330778230961cfbf2a24de36b5877e395cc596 (patch) | |
tree | d64f2f2a59a16d02025485e0e976280cf122c79a /src/wallet/rpcwallet.cpp | |
parent | cccc7525697e7b8d99b545e34f0f504c78ffdb94 (diff) |
rpc: Adjust witness-tx deserialize error message
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 6978fc400a..c5d8053995 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3230,7 +3230,7 @@ UniValue signrawtransactionwithwallet(const JSONRPCRequest& request) CMutableTransaction mtx; if (!DecodeHexTx(mtx, request.params[0].get_str())) { - throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX decode failed"); + throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX decode failed. Make sure the tx has at least one input."); } // Sign the transaction |