1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 23:08:07 +00:00

Add new best share info to verbose logging.

This commit is contained in:
Con Kolivas 2013-04-18 12:11:41 +10:00
parent 8bb52b4481
commit daea9c95a7

View File

@ -3204,9 +3204,9 @@ static bool stale_work(struct work *work, bool share)
static uint64_t share_diff(const struct work *work)
{
uint64_t *data64, d64;
uint64_t *data64, d64, ret;
bool new_best = false;
char rhash[32];
uint64_t ret;
swab256(rhash, work->hash);
if (opt_scrypt)
@ -3219,14 +3219,18 @@ static uint64_t share_diff(const struct work *work)
ret = diffone / d64;
cg_wlock(&control_lock);
if (ret > best_diff) {
if (unlikely(ret > best_diff)) {
new_best = true;
best_diff = ret;
suffix_string(best_diff, best_share, 0);
}
if (ret > work->pool->best_diff)
if (unlikely(ret > work->pool->best_diff))
work->pool->best_diff = ret;
cg_wunlock(&control_lock);
if (unlikely(new_best))
applog(LOG_INFO, "New best share: %s", best_share);
return ret;
}