diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-05-13 21:29:19 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-06-04 09:16:06 +0200 |
commit | 3df0411ad9fd75fb27af53e44835d41f5480fe3f (patch) | |
tree | 99e1a50e6b36e69c4429129d87567890b5878b3c /src/rpcclient.h | |
parent | 1f263c899ee0756ed9ed133f35bec18bdef20cdc (diff) |
remove JSON Spirit UniValue wrapper
Diffstat (limited to 'src/rpcclient.h')
-rw-r--r-- | src/rpcclient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcclient.h b/src/rpcclient.h index 29c1260272..52270aec74 100644 --- a/src/rpcclient.h +++ b/src/rpcclient.h @@ -6,8 +6,8 @@ #ifndef BITCOIN_RPCCLIENT_H #define BITCOIN_RPCCLIENT_H -#include "json_spirit_wrapper.h" +#include "univalue/univalue.h" -json_spirit::Array RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams); +UniValue RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams); #endif // BITCOIN_RPCCLIENT_H |