mirror of
https://github.com/xmrig/xmrig.git
synced 2025-02-02 03:06:30 +00:00
Removed unused private field in FailoverStrategy class.
This commit is contained in:
parent
f8f89a0946
commit
89608ade3b
2 changed files with 0 additions and 2 deletions
|
@ -34,7 +34,6 @@ FailoverStrategy::FailoverStrategy(const std::vector<Url*> &urls, int retryPause
|
|||
m_retryPause(retryPause),
|
||||
m_active(-1),
|
||||
m_index(0),
|
||||
m_remaining(0),
|
||||
m_listener(listener)
|
||||
{
|
||||
for (const Url *url : urls) {
|
||||
|
|
|
@ -66,7 +66,6 @@ private:
|
|||
const int m_retryPause;
|
||||
int m_active;
|
||||
int m_index;
|
||||
int m_remaining;
|
||||
IStrategyListener *m_listener;
|
||||
std::vector<Client*> m_pools;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue