1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 18:14:20 +00:00

Count lost shares with stratum as submit stale lost.

This commit is contained in:
Con Kolivas 2012-11-05 23:25:36 +11:00
parent 0465fef553
commit ffb8a29abf

View File

@ -4320,8 +4320,11 @@ static void clear_stratum_shares(struct pool *pool)
} }
mutex_unlock(&sshare_lock); mutex_unlock(&sshare_lock);
if (cleared) if (cleared) {
applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no); applog(LOG_WARNING, "Lost %d shares due to stratum disconnect on pool %d", cleared, pool->pool_no);
pool->stale_shares++;
total_stale++;
}
} }
/* One stratum thread per pool that has stratum waits on the socket checking /* One stratum thread per pool that has stratum waits on the socket checking