mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 20:44:19 +00:00
Perform all common pool initialisation in add_pool().
This commit is contained in:
parent
23b224faf9
commit
f8b66bde28
@ -395,6 +395,8 @@ static struct pool *add_pool(void)
|
||||
|
||||
/* Make sure the pool doesn't think we've been idle since time 0 */
|
||||
pool->tv_idle.tv_sec = ~0UL;
|
||||
pool->enabled = POOL_ENABLED;
|
||||
pool->idle = true;
|
||||
|
||||
return pool;
|
||||
}
|
||||
@ -5031,13 +5033,6 @@ int main(int argc, char *argv[])
|
||||
if (opt_benchmark)
|
||||
goto begin_bench;
|
||||
|
||||
for (i = 0; i < total_pools; i++) {
|
||||
struct pool *pool = pools[i];
|
||||
|
||||
pool->enabled = POOL_ENABLED;
|
||||
pool->idle = true;
|
||||
}
|
||||
|
||||
applog(LOG_NOTICE, "Probing for an alive pool");
|
||||
do {
|
||||
/* Look for at least one active pool before starting */
|
||||
|
Loading…
x
Reference in New Issue
Block a user