mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 04:54:26 +00:00
Don't count invalid nonces as hashrate for bflsc.
This commit is contained in:
parent
d7c99cd116
commit
da680f5162
@ -1607,13 +1607,14 @@ static void process_nonces(struct cgpu_info *bflsc, int dev, char *xlink, char *
|
|||||||
|
|
||||||
hex2bin((void*)&nonce, fields[i], 4);
|
hex2bin((void*)&nonce, fields[i], 4);
|
||||||
nonce = htobe32(nonce);
|
nonce = htobe32(nonce);
|
||||||
wr_lock(&(sc_info->stat_lock));
|
res = submit_nonce(bflsc->thr[0], work, nonce);
|
||||||
sc_info->sc_devs[dev].nonces_found++;
|
if (res) {
|
||||||
wr_unlock(&(sc_info->stat_lock));
|
wr_lock(&(sc_info->stat_lock));
|
||||||
|
sc_info->sc_devs[dev].nonces_found++;
|
||||||
|
wr_unlock(&(sc_info->stat_lock));
|
||||||
|
|
||||||
submit_nonce(bflsc->thr[0], work, nonce);
|
(*nonces)++;
|
||||||
(*nonces)++;
|
}
|
||||||
res = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
wr_lock(&(sc_info->stat_lock));
|
wr_lock(&(sc_info->stat_lock));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user