From be215004aaf2c0c54a07ed304bf4dc24472ab591 Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Wed, 29 May 2024 10:58:53 -0600 Subject: [PATCH] Pool.h: missing ifdef like everywhere else MODE_AUTO_ETH is used --- src/base/net/stratum/Pool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/net/stratum/Pool.h b/src/base/net/stratum/Pool.h index 3653077d..41374dfb 100644 --- a/src/base/net/stratum/Pool.h +++ b/src/base/net/stratum/Pool.h @@ -46,7 +46,7 @@ public: MODE_POOL, MODE_DAEMON, MODE_SELF_SELECT, -# ifdef XMRIG_ALGO_KAWPOW +# if defined XMRIG_ALGO_KAWPOW || defined XMRIG_ALGO_GHOSTRIDER MODE_AUTO_ETH, # endif # ifdef XMRIG_FEATURE_BENCHMARK @@ -155,7 +155,7 @@ private: bool m_submitToOrigin = false; Coin m_coin; int m_keepAlive = 0; -# ifdef XMRIG_ALGO_KAWPOW +# if defined XMRIG_ALGO_KAWPOW || defined XMRIG_ALGO_GHOSTRIDER Mode m_mode = MODE_AUTO_ETH; # else Mode m_mode = MODE_POOL;