fix rpc batching univalue issue

This commit is contained in:
Jonas Schnelli 2015-06-02 11:41:00 +02:00
parent 9a8897f4ac
commit 8f7e4abbe6
1 changed files with 1 additions and 1 deletions

View File

@ -889,7 +889,7 @@ static UniValue JSONRPCExecOne(const UniValue& req)
static string JSONRPCExecBatch(const UniValue& vReq)
{
UniValue ret;
UniValue ret(UniValue::VARR);
for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
ret.push_back(JSONRPCExecOne(vReq[reqIdx]));