1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-23 04:54:26 +00:00

Demote the invalid nonce warning to log info.

This commit is contained in:
Con Kolivas 2013-06-23 17:03:59 +10:00
parent 700f4b4516
commit 2ab7dac243

View File

@ -5709,8 +5709,8 @@ bool submit_nonce(struct thr_info *thr, struct work *work, uint32_t nonce)
diff1targ = opt_scrypt ? 0x0000ffffUL : 0;
if (be32toh(hash2_32[7]) > diff1targ) {
applog(LOG_WARNING, "%s%d: invalid nonce - HW error",
thr->cgpu->drv->name, thr->cgpu->device_id);
applog(LOG_INFO, "%s%d: invalid nonce - HW error",
thr->cgpu->drv->name, thr->cgpu->device_id);
inc_hw_errors(thr);
ret = false;