1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Fulltest is true if value is <= target.

This commit is contained in:
Con Kolivas 2013-04-22 09:53:34 +10:00
parent 3c61a51ea5
commit 3cc42231f1

2
util.c
View File

@ -660,7 +660,7 @@ bool fulltest(const unsigned char *hash, const unsigned char *target)
applog(LOG_DEBUG, " Proof: %s\nTarget: %s\nTrgVal? %s",
hash_str,
target_str,
rc ? "YES (hash < target)" :
rc ? "YES (hash <= target)" :
"no (false positive; hash > target)");
free(hash_str);