This commit is contained in:
jahway603
2021-07-26 18:49:02 -04:00
parent f90afcc15b
commit b7e8ad73ae

View File

@@ -37,8 +37,6 @@ void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC);
/** Register test transaction RPC commands */ /** Register test transaction RPC commands */
void RegisterTesttransactionsRPCCommands(CRPCTable &tableRPC); void RegisterTesttransactionsRPCCommands(CRPCTable &tableRPC);
/** Register stratum RPC commands */
void RegisterStratumRPCCommands(CRPCTable &tableRPC);
static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC) static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC)
@@ -51,7 +49,6 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC)
#ifdef TESTMODE #ifdef TESTMODE
RegisterTesttransactionsRPCCommands(tableRPC); RegisterTesttransactionsRPCCommands(tableRPC);
#endif #endif
RegisterStratumRPCCommands(tableRPC);
} }
#endif #endif