|
|
|
@ -20,13 +20,13 @@ void RegisterMiningRPCCommands(CRPCTable &tableRPC);
|
|
|
|
|
/** Register raw transaction RPC commands */
|
|
|
|
|
void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC);
|
|
|
|
|
|
|
|
|
|
static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC)
|
|
|
|
|
static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
|
|
|
|
|
{
|
|
|
|
|
RegisterBlockchainRPCCommands(tableRPC);
|
|
|
|
|
RegisterNetRPCCommands(tableRPC);
|
|
|
|
|
RegisterMiscRPCCommands(tableRPC);
|
|
|
|
|
RegisterMiningRPCCommands(tableRPC);
|
|
|
|
|
RegisterRawTransactionRPCCommands(tableRPC);
|
|
|
|
|
RegisterBlockchainRPCCommands(t);
|
|
|
|
|
RegisterNetRPCCommands(t);
|
|
|
|
|
RegisterMiscRPCCommands(t);
|
|
|
|
|
RegisterMiningRPCCommands(t);
|
|
|
|
|
RegisterRawTransactionRPCCommands(t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|