forked from lthn/blockchain
added nonce messge
This commit is contained in:
parent
e0e4220e79
commit
44fe6ada85
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue