Browse Source

Allow pools to be resuscitated on first startup by the watchpool thread.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
e501db143d
  1. 2
      cgminer.c

2
cgminer.c

@ -6092,7 +6092,7 @@ static void *watchpool_thread(void __maybe_unused *userdata) @@ -6092,7 +6092,7 @@ static void *watchpool_thread(void __maybe_unused *userdata)
pool->shares = pool->utility;
}
if ((pool->enabled == POOL_DISABLED || pool->has_stratum) && pool->probed)
if (pool->enabled == POOL_DISABLED)
continue;
/* Test pool is idle once every minute */

Loading…
Cancel
Save