mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
fix rpc batching univalue issue
This commit is contained in:
parent
9a8897f4ac
commit
8f7e4abbe6
1 changed files with 1 additions and 1 deletions
|
@ -889,7 +889,7 @@ static UniValue JSONRPCExecOne(const UniValue& req)
|
||||||
|
|
||||||
static string JSONRPCExecBatch(const UniValue& vReq)
|
static string JSONRPCExecBatch(const UniValue& vReq)
|
||||||
{
|
{
|
||||||
UniValue ret;
|
UniValue ret(UniValue::VARR);
|
||||||
for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
|
for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
|
||||||
ret.push_back(JSONRPCExecOne(vReq[reqIdx]));
|
ret.push_back(JSONRPCExecOne(vReq[reqIdx]));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue