Bitcoin Core 22.99.0
P2P Digital Currency
register.h
Go to the documentation of this file.
1// Copyright (c) 2009-2018 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_RPC_REGISTER_H
6#define BITCOIN_RPC_REGISTER_H
7
10class CRPCTable;
11
24
26{
32#ifdef ENABLE_EXTERNAL_SIGNER
34#endif // ENABLE_EXTERNAL_SIGNER
35}
36
37#endif // BITCOIN_RPC_REGISTER_H
RPC command dispatcher.
Definition: server.h:126
void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC)
Register raw transaction RPC commands.
void RegisterMiscRPCCommands(CRPCTable &tableRPC)
Register miscellaneous RPC commands.
Definition: misc.cpp:780
void RegisterMiningRPCCommands(CRPCTable &tableRPC)
Register mining RPC commands.
Definition: mining.cpp:1260
void RegisterSignerRPCCommands(CRPCTable &tableRPC)
Register raw transaction RPC commands.
void RegisterNetRPCCommands(CRPCTable &tableRPC)
Register P2P networking RPC commands.
Definition: net.cpp:971
static void RegisterAllCoreRPCCommands(CRPCTable &t)
Definition: register.h:25
void RegisterBlockchainRPCCommands(CRPCTable &tableRPC)
Register block chain RPC commands.
CRPCTable tableRPC
Definition: server.cpp:548