diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 205d7df2c..7e70a5ec2 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -228,7 +228,7 @@ UniValue getrawmempool(const UniValue& params, bool fHelp) setDepends.insert(txin.prevout.hash.ToString()); } - UniValue depends; + UniValue depends(UniValue::VARR); BOOST_FOREACH(const string& dep, setDepends) { depends.push_back(dep); @@ -714,7 +714,7 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp) + HelpExampleRpc("getmempoolinfo", "") ); - UniValue ret; + UniValue ret(UniValue::VOBJ); ret.push_back(Pair("size", (int64_t) mempool.size())); ret.push_back(Pair("bytes", (int64_t) mempool.GetTotalTxSize())); diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp index e4c5fa284..ee0274a4b 100644 --- a/src/rpcmisc.cpp +++ b/src/rpcmisc.cpp @@ -376,7 +376,7 @@ UniValue createmultisig(const UniValue& params, bool fHelp) CScriptID innerID(inner); CBitcoinAddress address(innerID); - UniValue result; + UniValue result(UniValue::VOBJ); result.push_back(Pair("address", address.ToString())); result.push_back(Pair("redeemScript", HexStr(inner.begin(), inner.end())));