1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-05 11:34:16 +00:00

Never automatically disable any pools but just specify them as idle if they're unresponsive at startup.

This commit is contained in:
Con Kolivas 2011-08-20 23:11:12 +10:00
parent 324d849bf2
commit b358bdc07e

10
main.c
View File

@ -4324,11 +4324,12 @@ static bool input_pool(bool live)
pool->tv_idle.tv_sec = ~0UL;
/* Test the pool before we enable it if we're live running, otherwise
/* Test the pool is not idle if we're live running, otherwise
* it will be tested separately */
ret = true;
if (live && pool_active(pool, false))
pool->enabled = true;
pool->enabled = true;
if (live && !pool_active(pool, false))
pool->idle = true;
pools[total_pools++] = pool;
out:
immedok(logwin, false);
@ -4708,16 +4709,17 @@ int main (int argc, char *argv[])
struct pool *pool;
pool = pools[i];
pool->enabled = true;
if (pool_active(pool, false)) {
if (!currentpool)
currentpool = pool;
applog(LOG_INFO, "Pool %d %s active", pool->pool_no, pool->rpc_url);
pools_active++;
pool->enabled = true;
} else {
if (pool == currentpool)
currentpool = NULL;
applog(LOG_WARNING, "Unable to get work from pool %d %s", pool->pool_no, pool->rpc_url);
pool->idle = true;
}
}