aboutsummaryrefslogtreecommitdiff
path: root/src/rpcclient.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-05-10 13:35:44 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-06-04 09:16:05 +0200
commit53b4671a9de75f7c8e2903d510cf88867c3f6b97 (patch)
tree9bb3808d270e58f7c7a0a546110f5e9dbd941fc7 /src/rpcclient.cpp
parent15982a8b69ec6ab3c3a6bf71fc6a9b681d3ff541 (diff)
downloadbitcoin-53b4671a9de75f7c8e2903d510cf88867c3f6b97.tar.xz
extend conversion to UniValue
Diffstat (limited to 'src/rpcclient.cpp')
-rw-r--r--src/rpcclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp
index d8c4da4207..8b7b9e1493 100644
--- a/src/rpcclient.cpp
+++ b/src/rpcclient.cpp
@@ -122,7 +122,7 @@ static CRPCConvertTable rpcCvtTable;
/** Convert strings to command-specific RPC representation */
Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams)
{
- Array params;
+ UniValue params(UniValue::VARR);
for (unsigned int idx = 0; idx < strParams.size(); idx++) {
const std::string& strVal = strParams[idx];