mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-23 03:59:41 +00:00
Fixed self-select login sequence
In self-select mode, we only have pool wallet right after login.
This commit is contained in:
parent
72c8404d18
commit
5611ae9a30
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
void setDiff(uint64_t diff);
|
||||
|
||||
inline bool isNicehash() const { return m_nicehash; }
|
||||
inline bool isValid() const { return m_size > 0 && m_diff > 0; }
|
||||
inline bool isValid() const { return (m_size > 0 && m_diff > 0) || !m_poolWallet.isEmpty(); }
|
||||
inline bool setId(const char *id) { return m_id = id; }
|
||||
inline const Algorithm &algorithm() const { return m_algorithm; }
|
||||
inline const Buffer &seed() const { return m_seed; }
|
||||
|
|
Loading…
Reference in a new issue