Bitcoin Core  22.0.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 
10 class CRPCTable;
11 
24 
25 static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
26 {
32 #ifdef ENABLE_EXTERNAL_SIGNER
34 #endif // ENABLE_EXTERNAL_SIGNER
35 }
36 
37 #endif // BITCOIN_RPC_REGISTER_H
void RegisterSignerRPCCommands(CRPCTable &tableRPC)
Register raw transaction RPC commands.
RPC command dispatcher.
Definition: server.h:126
void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC)
Register raw transaction RPC commands.
static void RegisterAllCoreRPCCommands(CRPCTable &t)
Definition: register.h:25
void RegisterMiscRPCCommands(CRPCTable &tableRPC)
Register miscellaneous RPC commands.
Definition: misc.cpp:749
CRPCTable tableRPC
Definition: server.cpp:548
void RegisterBlockchainRPCCommands(CRPCTable &tableRPC)
Register block chain RPC commands.
void RegisterNetRPCCommands(CRPCTable &tableRPC)
Register P2P networking RPC commands.
Definition: net.cpp:959
void RegisterMiningRPCCommands(CRPCTable &tableRPC)
Register mining RPC commands.
Definition: mining.cpp:1249