aboutsummaryrefslogtreecommitdiff
path: root/src/rpcblockchain.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-06-02 12:28:54 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-06-04 09:16:21 +0200
commitc7fbbc7e1d7b076f68f0b2d87f7e86faba5d3a26 (patch)
tree62e6715d00ec972f0d574bd36cc7b69e1c1e56e5 /src/rpcblockchain.cpp
parent8f7e4abbe6d6c814f5f3c069e5b3067920689dbe (diff)
downloadbitcoin-c7fbbc7e1d7b076f68f0b2d87f7e86faba5d3a26.tar.xz
fix missing univalue types during constructing
Diffstat (limited to 'src/rpcblockchain.cpp')
-rw-r--r--src/rpcblockchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp
index e3f17b4ae7..e45368cb97 100644
--- a/src/rpcblockchain.cpp
+++ b/src/rpcblockchain.cpp
@@ -206,7 +206,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);
@@ -635,7 +635,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()));