mirror of
https://github.com/monero-project/monero.git
synced 2026-01-20 03:23:14 +01:00
miner: use verification mode for low diff one block nonce searches
This avoids lengthy init times when testing
This commit is contained in:
@@ -476,7 +476,7 @@ namespace cryptonote
|
|||||||
for(; bl.nonce != std::numeric_limits<uint32_t>::max(); bl.nonce++)
|
for(; bl.nonce != std::numeric_limits<uint32_t>::max(); bl.nonce++)
|
||||||
{
|
{
|
||||||
crypto::hash h;
|
crypto::hash h;
|
||||||
gbh(bl, height, tools::get_max_concurrency(), h);
|
gbh(bl, height, diffic <= 100 ? 0 : tools::get_max_concurrency(), h);
|
||||||
|
|
||||||
if(check_hash(h, diffic))
|
if(check_hash(h, diffic))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user