Merge pull request #3531 from SChernykh/dev
Always reset nonce on RandomX dataset change
This commit is contained in:
commit
56baec762f
@ -359,7 +359,9 @@ void xmrig::CpuWorker<N>::start()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
consumeJob();
|
if (!Nonce::isPaused()) {
|
||||||
|
consumeJob();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ void xmrig::CudaWorker::start()
|
|||||||
std::this_thread::yield();
|
std::this_thread::yield();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!consumeJob()) {
|
if (isReady() && !consumeJob()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -190,7 +190,7 @@ void xmrig::OclWorker::start()
|
|||||||
std::this_thread::yield();
|
std::this_thread::yield();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!consumeJob()) {
|
if (isReady() && !consumeJob()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -576,6 +576,11 @@ void xmrig::Miner::setJob(const Job &job, bool donate)
|
|||||||
|
|
||||||
# ifdef XMRIG_ALGO_RANDOMX
|
# ifdef XMRIG_ALGO_RANDOMX
|
||||||
const bool ready = d_ptr->initRX();
|
const bool ready = d_ptr->initRX();
|
||||||
|
|
||||||
|
// Always reset nonce on RandomX dataset change
|
||||||
|
if (!ready) {
|
||||||
|
d_ptr->reset = true;
|
||||||
|
}
|
||||||
# else
|
# else
|
||||||
constexpr const bool ready = true;
|
constexpr const bool ready = true;
|
||||||
# endif
|
# endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user