aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorDaniel Kraft <d@domob.eu>2018-08-09 18:08:45 +0200
committerDaniel Kraft <d@domob.eu>2018-08-09 18:08:45 +0200
commit227d27e70c1b41ee88885d72bcf48448aa5a57a9 (patch)
tree98c26c17be6bd89a97cd8c3cabd3ef318dbaf4a0 /src/rpc
parent3e3a50aeb8ad81cbbbcc200683e1adeb2dad19de (diff)
downloadbitcoin-227d27e70c1b41ee88885d72bcf48448aa5a57a9.tar.xz
Use pushKV in some new PSBT RPCs.
Most of the code uses UniValue::pushKV where appropriate, but some new RPC code related to PSBTs did not.
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/rawtransaction.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp
index 28ade1f458..608a1b5da2 100644
--- a/src/rpc/rawtransaction.cpp
+++ b/src/rpc/rawtransaction.cpp
@@ -1662,12 +1662,12 @@ UniValue finalizepsbt(const JSONRPCRequest& request)
mtx.vin[i].scriptWitness = psbtx.inputs[i].final_script_witness;
}
ssTx << mtx;
- result.push_back(Pair("hex", HexStr(ssTx.begin(), ssTx.end())));
+ result.pushKV("hex", HexStr(ssTx.begin(), ssTx.end()));
} else {
ssTx << psbtx;
- result.push_back(Pair("psbt", EncodeBase64((unsigned char*)ssTx.data(), ssTx.size())));
+ result.pushKV("psbt", EncodeBase64((unsigned char*)ssTx.data(), ssTx.size()));
}
- result.push_back(Pair("complete", complete));
+ result.pushKV("complete", complete);
return result;
}