Commit 5cf4e188fdc0906419723fe8294175d81e1d1e5d

ckolivas 2012-05-02T11:17:06

Increase pool watch interval to 30 seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index f92f98e..d65dccc 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -4031,7 +4031,7 @@ static void *watchpool_thread(void __maybe_unused *userdata)
 			switch_pools(NULL);
 		}
 
-		sleep(10);
+		sleep(30);
 	}
 	return NULL;
 }