Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <rpc/client.h>
#include <common/args.h>
#include <tinyformat.h>
#include <cstdint>
#include <set>
#include <string>
#include <string_view>
Go to the source code of this file.
Classes | |
class | CRPCConvertParam |
class | CRPCConvertTable |
Functions | |
static UniValue | Parse (std::string_view raw) |
Parse string to UniValue or throw runtime_error if string contains invalid JSON. More... | |
UniValue | RPCConvertValues (const std::string &strMethod, const std::vector< std::string > &strParams) |
Convert positional arguments to command-specific RPC representation. More... | |
UniValue | RPCConvertNamedValues (const std::string &strMethod, const std::vector< std::string > &strParams) |
Convert named arguments to command-specific RPC representation. More... | |
Variables | |
static const CRPCConvertParam | vRPCConvertParams [] |
Specify a (method, idx, name) here if the argument is a non-string RPC argument and needs to be converted from JSON. More... | |
static CRPCConvertTable | rpcCvtTable |
|
static |
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
Definition at line 225 of file client.cpp.
UniValue RPCConvertNamedValues | ( | const std::string & | strMethod, |
const std::vector< std::string > & | strParams | ||
) |
Convert named arguments to command-specific RPC representation.
Definition at line 285 of file client.cpp.
UniValue RPCConvertValues | ( | const std::string & | strMethod, |
const std::vector< std::string > & | strParams | ||
) |
Convert positional arguments to command-specific RPC representation.
Definition at line 273 of file client.cpp.
|
static |
Definition at line 271 of file client.cpp.
|
static |
Specify a (method, idx, name) here if the argument is a non-string RPC argument and needs to be converted from JSON.
Definition at line 29 of file client.cpp.