Browse Source

Bugfix: Skip final pool_active check in balancing modes (where pools switch around often)

Luke Dashjr 11 years ago
parent
commit
10020cc0b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.c

+ 1 - 1
miner.c

@@ -4138,7 +4138,7 @@ retry:
 		pool = cp;
 
 out:
-	if (cp != pool)
+	if (cp != pool && !(pool_strategy == POOL_LOADBALANCE  || pool_strategy == POOL_BALANCE))
 	{
 		if (!pool_active(pool, false))
 		{