diff options
Diffstat (limited to 'src/rpc/register.h')
-rw-r--r-- | src/rpc/register.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/rpc/register.h b/src/rpc/register.h index c67d8b893d..301f410da3 100644 --- a/src/rpc/register.h +++ b/src/rpc/register.h @@ -12,9 +12,10 @@ class CRPCTable; void RegisterBlockchainRPCCommands(CRPCTable &tableRPC); void RegisterFeeRPCCommands(CRPCTable&); void RegisterMempoolRPCCommands(CRPCTable&); -void RegisterNetRPCCommands(CRPCTable &tableRPC); -void RegisterMiscRPCCommands(CRPCTable &tableRPC); void RegisterMiningRPCCommands(CRPCTable &tableRPC); +void RegisterNodeRPCCommands(CRPCTable&); +void RegisterNetRPCCommands(CRPCTable&); +void RegisterOutputScriptRPCCommands(CRPCTable&); void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC); void RegisterSignMessageRPCCommands(CRPCTable&); void RegisterSignerRPCCommands(CRPCTable &tableRPC); @@ -25,9 +26,10 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &t) RegisterBlockchainRPCCommands(t); RegisterFeeRPCCommands(t); RegisterMempoolRPCCommands(t); - RegisterNetRPCCommands(t); - RegisterMiscRPCCommands(t); RegisterMiningRPCCommands(t); + RegisterNodeRPCCommands(t); + RegisterNetRPCCommands(t); + RegisterOutputScriptRPCCommands(t); RegisterRawTransactionRPCCommands(t); RegisterSignMessageRPCCommands(t); #ifdef ENABLE_EXTERNAL_SIGNER |