Commit e501db143d76c53a6a754920e53c293a74cce729

Con Kolivas 2013-03-07T16:45:25

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

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 2c06ec2..1490183 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -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 */