diff options
| author | Jonas Schnelli <[email protected]> | 2015-05-13 21:29:19 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-04 09:16:06 +0200 |
| commit | 3df0411ad9fd75fb27af53e44835d41f5480fe3f (patch) | |
| tree | 99e1a50e6b36e69c4429129d87567890b5878b3c /src/rpcclient.cpp | |
| parent | fix rpc unit test, plain numbers are not JSON compatible object (diff) | |
| download | discoin-3df0411ad9fd75fb27af53e44835d41f5480fe3f.tar.xz discoin-3df0411ad9fd75fb27af53e44835d41f5480fe3f.zip | |
remove JSON Spirit UniValue wrapper
Diffstat (limited to 'src/rpcclient.cpp')
| -rw-r--r-- | src/rpcclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index aa6d1eff5..ec098a17a 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.cpp @@ -122,7 +122,7 @@ CRPCConvertTable::CRPCConvertTable() static CRPCConvertTable rpcCvtTable; /** Convert strings to command-specific RPC representation */ -Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams) +UniValue RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams) { UniValue params(UniValue::VARR); |