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