miner: use verification mode for low diff one block nonce searches

This avoids lengthy init times when testing
pull/241/head
moneromooo-monero 5 years ago
parent 5e384f21b5
commit c2095fc27b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -476,7 +476,7 @@ namespace cryptonote
for(; bl.nonce != std::numeric_limits<uint32_t>::max(); bl.nonce++)
{
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))
{

Loading…
Cancel
Save