Browse Source

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

nfactor-troky
Con Kolivas 13 years ago
parent
commit
79f4b570f7
  1. 2
      cgminer.c

2
cgminer.c

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

Loading…
Cancel
Save