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/test/rpc_tests.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/test/rpc_tests.cpp')
| -rw-r--r-- | src/test/rpc_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 991763aba..a97c96be7 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -34,7 +34,7 @@ Value CallRPC(string args) boost::split(vArgs, args, boost::is_any_of(" \t")); string strMethod = vArgs[0]; vArgs.erase(vArgs.begin()); - Array params = RPCConvertValues(strMethod, vArgs); + UniValue params = RPCConvertValues(strMethod, vArgs); rpcfn_type method = tableRPC[strMethod]->actor; try { |