diff --git a/src/rpc/register.h b/src/rpc/register.h index 8d0f8b6aa..2493e447b 100644 --- a/src/rpc/register.h +++ b/src/rpc/register.h @@ -37,8 +37,6 @@ 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) @@ -51,7 +49,6 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC) #ifdef TESTMODE RegisterTesttransactionsRPCCommands(tableRPC); #endif - RegisterStratumRPCCommands(tableRPC); } #endif