Browse Source

Start longpoll from every pool when load balance strategy is in use.

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

+ 1 - 1
cgminer.c

@@ -4075,7 +4075,7 @@ static struct pool *select_longpoll_pool(struct pool *cp)
  */
  */
 static void wait_lpcurrent(struct pool *pool)
 static void wait_lpcurrent(struct pool *pool)
 {
 {
-	if (pool->enabled == POOL_REJECTING)
+	if (pool->enabled == POOL_REJECTING || pool_strategy == POOL_LOADBALANCE)
 		return;
 		return;
 
 
 	while (pool != current_pool()) {
 	while (pool != current_pool()) {