Browse Source

fix rpc batching univalue issue

v1.0.9-lin
Jonas Schnelli 9 years ago
committed by Jack Grigg
parent
commit
bf3f56025d
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 2
      src/rpcserver.cpp

2
src/rpcserver.cpp

@ -927,7 +927,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]));

Loading…
Cancel
Save