Browse Source

Bugfix: Highlight all active pools, in pool listing

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

+ 1 - 1
miner.c

@@ -6878,7 +6878,7 @@ updated:
 			if (pool->prio != j)
 				continue;
 
-			if (pool == current_pool())
+			if (pool_actively_in_use(pool, NULL))
 				wattron(logwin, A_BOLD);
 			if (pool->enabled != POOL_ENABLED)
 				wattron(logwin, A_DIM);