Browse Source

Switch queued count when choosing a different pool from a failed stratum pool in getwork thread.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
9ccc418a6c
  1. 2
      cgminer.c

2
cgminer.c

@ -2684,6 +2684,8 @@ retry:
sleep(5); sleep(5);
if (altpool != pool) { if (altpool != pool) {
wc->pool = altpool; wc->pool = altpool;
inc_queued(altpool);
dec_queued(pool);
goto retry; goto retry;
} }
} }

Loading…
Cancel
Save