blockchain: log more info when we reject an orphan

We want to know what happened when a block is wrongly rejected
This commit is contained in:
moneromooo-monero 2017-08-04 23:26:55 +01:00
parent ab594cfee9
commit f4f7eeba80
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -1425,7 +1425,9 @@ bool Blockchain::handle_alternative_block(const block& b, const crypto::hash& id
{
//block orphaned
bvc.m_marked_as_orphaned = true;
MERROR_VER("Block recognized as orphaned and rejected, id = " << id);
MERROR_VER("Block recognized as orphaned and rejected, id = " << id << ", height " << block_height
<< ", parent in alt " << (it_prev != m_alternative_chains.end()) << ", parent in main " << parent_in_main
<< " (parent " << b.prev_id << ", current top " << get_tail_id() << ", chain height " << get_current_blockchain_height() << ")");
}
return true;