mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 14:28:12 +00:00
Pool management option now shows pool name when available
This commit is contained in:
parent
dd7bd69786
commit
817ed55b6a
12
sgminer.c
12
sgminer.c
@ -752,7 +752,7 @@ static char *set_disable_pool(char *arg)
|
|||||||
pool = pools[json_array_index];
|
pool = pools[json_array_index];
|
||||||
|
|
||||||
len = strlen(arg);
|
len = strlen(arg);
|
||||||
if (len < 0)
|
if (len < 1)
|
||||||
{
|
{
|
||||||
disabled = 1;
|
disabled = 1;
|
||||||
}
|
}
|
||||||
@ -4397,6 +4397,7 @@ static void display_pools(void)
|
|||||||
struct pool *pool;
|
struct pool *pool;
|
||||||
int selected, i;
|
int selected, i;
|
||||||
char input;
|
char input;
|
||||||
|
char *disp_name;
|
||||||
|
|
||||||
opt_loginput = true;
|
opt_loginput = true;
|
||||||
immedok(logwin, true);
|
immedok(logwin, true);
|
||||||
@ -4421,11 +4422,16 @@ updated:
|
|||||||
wlogprint("Rejecting ");
|
wlogprint("Rejecting ");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
wlogprint("%s Quota %d Prio %d: %s User:%s\n",
|
disp_name = pool->poolname;
|
||||||
|
if (strlen(disp_name) < 1)
|
||||||
|
{
|
||||||
|
disp_name = pool->rpc_url;
|
||||||
|
}
|
||||||
|
wlogprint("%s Quota %d Prio %d: '%s' User:%s\n",
|
||||||
pool->idle? "Dead" : "Alive",
|
pool->idle? "Dead" : "Alive",
|
||||||
pool->quota,
|
pool->quota,
|
||||||
pool->prio,
|
pool->prio,
|
||||||
pool->rpc_url, pool->rpc_user);
|
disp_name, pool->rpc_user);
|
||||||
wattroff(logwin, A_BOLD | A_DIM);
|
wattroff(logwin, A_BOLD | A_DIM);
|
||||||
}
|
}
|
||||||
retry:
|
retry:
|
||||||
|
Loading…
Reference in New Issue
Block a user