You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
631 B
18 lines
631 B
11 years ago
|
// Copyright (c) 2010 Satoshi Nakamoto
|
||
9 years ago
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
||
10 years ago
|
// Distributed under the MIT software license, see the accompanying
|
||
11 years ago
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
||
10 years ago
|
#ifndef BITCOIN_RPCCLIENT_H
|
||
|
#define BITCOIN_RPCCLIENT_H
|
||
11 years ago
|
|
||
9 years ago
|
#include <univalue.h>
|
||
11 years ago
|
|
||
10 years ago
|
UniValue RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams);
|
||
10 years ago
|
/** Non-RFC4627 JSON parser, accepts internal values (such as numbers, true, false, null)
|
||
|
* as well as objects and arrays.
|
||
|
*/
|
||
|
UniValue ParseNonRFCJSONValue(const std::string& strVal);
|
||
11 years ago
|
|
||
10 years ago
|
#endif // BITCOIN_RPCCLIENT_H
|