diff options
author | constantined <nobody@constantined.com> | 2013-07-23 04:48:14 +0300 |
---|---|---|
committer | constantined <nobody@constantined.com> | 2013-07-23 04:48:14 +0300 |
commit | 2227389fa8fa1b9ff19234838fc7b641e935125b (patch) | |
tree | 8c8459f756467a2310ea0f386c22c059d3831b75 /src/bitcoinrpc.cpp | |
parent | c83d4d2170bf00863bd5c21c6eaea91b00390e72 (diff) |
JSON Spirit updated to v4.06
Diffstat (limited to 'src/bitcoinrpc.cpp')
-rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index c99b74f183..c3c99982ba 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -30,6 +30,8 @@ using namespace boost; using namespace boost::asio; using namespace json_spirit; +static const char* Value_type_name[]={"obj", "array", "str", "bool", "int", "real", "null"}; + static std::string strRPCUserColonPass; // These are created by StartRPCThreads, destroyed in StopRPCThreads |