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

Display best share diff for scrypt as well.

This commit is contained in:
Con Kolivas 2012-10-27 17:27:06 +11:00
parent 27aa82aab6
commit 7bca8a0ab0

View File

@ -1992,11 +1992,16 @@ static uint64_t share_diff(const struct work *work)
static uint32_t scrypt_diff(const struct work *work)
{
const uint32_t scrypt_diffone = 0x0000fffful;
uint32_t d32 = work->outputhash;
uint32_t d32 = work->outputhash, ret;
if (unlikely(!d32))
d32 = 1;
return scrypt_diffone / d32;
ret = scrypt_diffone / d32;
if (ret > best_diff) {
best_diff = ret;
suffix_string(best_diff, best_share, 0);
}
return ret;
}
static bool submit_upstream_work(struct work *work, CURL *curl, bool resubmit)