Skip to content

Commit

Permalink
Bugfix: Highlight all active pools, in pool listing
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Nov 1, 2014
1 parent 9cbf7dc commit 6d9e28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner.c
Original file line number Diff line number Diff line change
Expand Up @@ -7520,7 +7520,7 @@ static void display_pools(void)
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 || pool->failover_only)
wattron(logwin, A_DIM);
Expand Down

0 comments on commit 6d9e28e

Please sign in to comment.