diff options
| author | benthecarman <[email protected]> | 2019-02-04 21:26:43 -0600 |
|---|---|---|
| committer | benthecarman <[email protected]> | 2019-02-04 21:26:52 -0600 |
| commit | 30d0f7be6e6bd45fed7195ddf31187438b02227a (patch) | |
| tree | 7e26ab5135127031a6b21aeb06d07cfdff05be7d | |
| parent | Merge #15347: Fix build after pr 15266 merged (diff) | |
| download | discoin-30d0f7be6e6bd45fed7195ddf31187438b02227a.tar.xz discoin-30d0f7be6e6bd45fed7195ddf31187438b02227a.zip | |
rpc: Fix for segfault if combinepsbt called with empty inputs
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 3 | ||||
| -rwxr-xr-x | test/functional/rpc_psbt.py | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index ac2e0ff4e..5a057cdb1 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1514,6 +1514,9 @@ UniValue combinepsbt(const JSONRPCRequest& request) // Unserialize the transactions std::vector<PartiallySignedTransaction> psbtxs; UniValue txs = request.params[0].get_array(); + if (txs.empty()) { + throw JSONRPCError(RPC_INVALID_PARAMETER, "Parameter 'txs' cannot be empty"); + } for (unsigned int i = 0; i < txs.size(); ++i) { PartiallySignedTransaction psbtx; std::string error; diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py index 1e10280e6..a82a5d020 100755 --- a/test/functional/rpc_psbt.py +++ b/test/functional/rpc_psbt.py @@ -269,6 +269,9 @@ class PSBTTest(BitcoinTestFramework): combined = self.nodes[2].combinepsbt(combiner['combine']) assert_equal(combined, combiner['result']) + # Empty combiner test + assert_raises_rpc_error(-8, "Parameter 'txs' cannot be empty", self.nodes[0].combinepsbt, []) + # Finalizer test for finalizer in finalizers: finalized = self.nodes[2].finalizepsbt(finalizer['finalize'], False)['psbt'] |