stratum doesn't appear, so trying to add stratumRPCCommands as seen elsewhere

This commit is contained in:
jahway603
2021-07-12 18:20:02 -04:00
parent 98fbd2c0f4
commit f90afcc15b

View File

@@ -37,6 +37,8 @@ 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)
@@ -49,6 +51,7 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &tableRPC)
#ifdef TESTMODE #ifdef TESTMODE
RegisterTesttransactionsRPCCommands(tableRPC); RegisterTesttransactionsRPCCommands(tableRPC);
#endif #endif
RegisterStratumRPCCommands(tableRPC);
} }
#endif #endif