Merge pull request #6300

6f330865 fix tests bug added in #6110 (Dusan Klinec)
lite
Alexander Blair 4 years ago
commit 066c327f73
No known key found for this signature in database
GPG Key ID: C64552D877C32479

@ -393,11 +393,17 @@ void test_generator::fill_nonce(cryptonote::block& blk, const difficulty_type& d
const cryptonote::Blockchain *blockchain = nullptr; const cryptonote::Blockchain *blockchain = nullptr;
std::unique_ptr<cryptonote::Blockchain> bc; std::unique_ptr<cryptonote::Blockchain> bc;
if (blk.major_version >= RX_BLOCK_VERSION) if (blk.major_version >= RX_BLOCK_VERSION && diffic > 1)
{ {
CHECK_AND_ASSERT_THROW_MES(m_events != nullptr, "events not set, cannot compute valid RandomX PoW"); if (m_events == nullptr)
bc = init_blockchain(*m_events, m_nettype); {
blockchain = bc.get(); MDEBUG("events not set, RandomX PoW can fail due to zero seed hash");
}
else
{
bc = init_blockchain(*m_events, m_nettype);
blockchain = bc.get();
}
} }
blk.nonce = 0; blk.nonce = 0;

Loading…
Cancel
Save