1
0
Fork 0
forked from lthn/blockchain

added nonce messge

This commit is contained in:
crypro.zoidberg 2019-04-14 20:23:49 +02:00
parent e0e4220e79
commit 44fe6ada85

View file

@ -4295,8 +4295,9 @@ bool blockchain_storage::handle_block_to_main_chain(const block& bl, const crypt
if (!check_hash(proof_hash, current_diffic))
{
LOG_ERROR("Block with id: " << id << ENDL
<< "PoW hash: " << proof_hash << ENDL
<< "unexpected difficulty: " << current_diffic);
<< "PoW hash: " << proof_hash << ENDL
<< "nonce: " << bl.nonce << ENDL
<< "expected difficulty: " << current_diffic);
bvc.m_verification_failed = true;
return false;
}