mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-24 05:44:30 +00:00
fix rpc batching univalue issue
This commit is contained in:
parent
9a8897f4ac
commit
8f7e4abbe6
@ -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…
x
Reference in New Issue
Block a user