Browse Source

bitcoin-tx: Fix JSON validation of prevtxs

pull/4/head
Eric R. Schulz 10 years ago
parent
commit
2a3d988b80
  1. 2
      src/bitcoin-tx.cpp

2
src/bitcoin-tx.cpp

@ -368,7 +368,7 @@ static void MutateTxSign(CMutableTransaction& tx, const string& flagStr)
// Add previous txouts given in the RPC call:
if (!registers.count("prevtxs"))
throw runtime_error("prevtxs register variable must be set.");
UniValue prevtxsObj = registers["privatekeys"];
UniValue prevtxsObj = registers["prevtxs"];
{
for (unsigned int previdx = 0; previdx < prevtxsObj.count(); previdx++) {
UniValue prevOut = prevtxsObj[previdx];

Loading…
Cancel
Save