Browse Source

Only queue from backup pools once we have nothing staged.

Con Kolivas 13 years ago
parent
commit
0e56dffd92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -2424,7 +2424,7 @@ static void *get_work_thread(void *userdata)
 	else {
 		bool lagging;
 
-		if (ts <= opt_queue)
+		if (!ts)
 			lagging = true;
 		pool = ret_work->pool = select_pool(lagging);
 		inc_queued(pool);