mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 15:27:53 +00:00
klondike add new nonecount only once
This commit is contained in:
parent
577f1a2043
commit
d7db1e8a2b
@ -519,10 +519,11 @@ static int64_t klondike_scanwork(struct thr_info *thr)
|
||||
newhashdev += klninfo->status[dev].hashcount - klninfo->devinfo[dev].lasthashcount;
|
||||
klninfo->devinfo[dev].lasthashcount = klninfo->status[dev].hashcount;
|
||||
klninfo->hashcount += (newhashdev << 32) / klninfo->status[dev].maxcount;
|
||||
newhashcount += 0xffffffffull * (uint64_t)klninfo->noncecount;
|
||||
|
||||
// todo: check stats for critical conditions
|
||||
}
|
||||
newhashcount += 0xffffffffull * (uint64_t)klninfo->noncecount;
|
||||
klninfo->noncecount = 0;
|
||||
rd_unlock(&(klninfo->stat_lock));
|
||||
}
|
||||
return newhashcount;
|
||||
|
Loading…
Reference in New Issue
Block a user