mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
Show pool difficulty more verbosely if it changes via stratum.
This commit is contained in:
parent
4efe9ca82e
commit
3336880e3b
6
util.c
6
util.c
@ -1308,16 +1308,20 @@ out:
|
||||
|
||||
static bool parse_diff(struct pool *pool, json_t *val)
|
||||
{
|
||||
double diff;
|
||||
double old_diff, diff;
|
||||
|
||||
diff = json_number_value(json_array_get(val, 0));
|
||||
if (diff == 0)
|
||||
return false;
|
||||
|
||||
cg_wlock(&pool->data_lock);
|
||||
old_diff = pool->swork.diff;
|
||||
pool->swork.diff = diff;
|
||||
cg_wunlock(&pool->data_lock);
|
||||
|
||||
if (old_diff != diff)
|
||||
applog(LOG_NOTICE, "Pool %d difficulty changed to %f", pool->pool_no, diff);
|
||||
else
|
||||
applog(LOG_DEBUG, "Pool %d difficulty set to %f", pool->pool_no, diff);
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user