mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-12-24 22:27:46 +00:00
Merge pull request #6048
c2095fc2
miner: use verification mode for low diff one block nonce searches (moneromooo-monero)
This commit is contained in:
commit
6b2b1d6368
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue