diff --git a/src/rpc/register.h b/src/rpc/register.h index 2493e447b..8d0f8b6aa 100644 --- a/src/rpc/register.h +++ b/src/rpc/register.h @@ -37,6 +37,8 @@ void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC); /** Register test transaction RPC commands */ void RegisterTesttransactionsRPCCommands(CRPCTable &tableRPC); +/** Register stratum RPC commands */ +void RegisterStratumRPCCommands(CRPCTable &tableRPC); static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC) @@ -49,6 +51,7 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC) #ifdef TESTMODE RegisterTesttransactionsRPCCommands(tableRPC); #endif + RegisterStratumRPCCommands(tableRPC); } #endif