Browse Source

Check for pool enabled in cnx_needed.

nfactor-troky
Con Kolivas 11 years ago
parent
commit
6fec07ab7e
  1. 3
      cgminer.c

3
cgminer.c

@ -4800,6 +4800,9 @@ static bool cnx_needed(struct pool *pool) @@ -4800,6 +4800,9 @@ static bool cnx_needed(struct pool *pool)
{
struct pool *cp;
if (pool->enabled != POOL_ENABLED)
return false;
/* Balance strategies need all pools online */
if (pool_strategy == POOL_BALANCE)
return true;

Loading…
Cancel
Save