2013-11-20 14:18:57 +01:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-11-20 10:19:29 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-20 14:18:57 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_RPCCLIENT_H
|
|
|
|
#define BITCOIN_RPCCLIENT_H
|
2013-11-20 14:18:57 +01:00
|
|
|
|
2014-08-20 15:15:16 -04:00
|
|
|
#include "json_spirit_wrapper.h"
|
2013-11-20 14:18:57 +01:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
json_spirit::Array RPCConvertValues(const std::string& strMethod, const std::vector<std::string>& strParams);
|
2013-11-20 14:18:57 +01:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_RPCCLIENT_H
|