Browse Source

Add new best share info to verbose logging.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
daea9c95a7
  1. 12
      cgminer.c

12
cgminer.c

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

Loading…
Cancel
Save