mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-10 23:08:07 +00:00
Add stratum share response lag time to verbose output if it's greater than 1 second.
This commit is contained in:
parent
7731806417
commit
9c59fe2c31
@ -5026,8 +5026,15 @@ static void stratum_share_result(json_t *val, json_t *res_val, json_t *err_val,
|
||||
struct stratum_share *sshare)
|
||||
{
|
||||
struct work *work = sshare->work;
|
||||
time_t now_t = time(NULL);
|
||||
char hashshow[64];
|
||||
int srdiff;
|
||||
|
||||
srdiff = now_t - sshare->sshare_sent;
|
||||
if (srdiff > 0) {
|
||||
applog(LOG_INFO, "Pool %d stratum share result lag time %d seconds",
|
||||
work->pool->pool_no, srdiff);
|
||||
}
|
||||
show_hash(work, hashshow);
|
||||
share_result(val, res_val, err_val, work, hashshow, false, "");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user