Browse Source

Start the stratum thread only if we successfully init and authorise it, otherwise unset the init flag.

nfactor-troky
ckolivas 12 years ago
parent
commit
8c87807519
  1. 3
      cgminer.c

3
cgminer.c

@ -4997,7 +4997,10 @@ retry_stratum: @@ -4997,7 +4997,10 @@ retry_stratum:
bool ret = initiate_stratum(pool) && auth_stratum(pool);
pool->idle = ret;
if (ret)
init_stratum_thread(pool);
else
pool_tclear(pool, &pool->stratum_init);
return ret;
}
return pool->stratum_active;

Loading…
Cancel
Save