Merge pull request #3687

6b13976 blockchain: log in DEBUG when a block is found, and where (moneromooo-monero)
This commit is contained in:
luigi1111 2018-06-12 12:22:12 -05:00
commit 6be2516140
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 3 additions and 3 deletions

View File

@ -2282,19 +2282,19 @@ bool Blockchain::have_block(const crypto::hash& id) const
if(m_db->block_exists(id))
{
LOG_PRINT_L3("block exists in main chain");
LOG_PRINT_L2("block " << id << " found in main chain");
return true;
}
if(m_alternative_chains.count(id))
{
LOG_PRINT_L3("block found in m_alternative_chains");
LOG_PRINT_L2("block " << id << " found in m_alternative_chains");
return true;
}
if(m_invalid_blocks.count(id))
{
LOG_PRINT_L3("block found in m_invalid_blocks");
LOG_PRINT_L2("block " << id << " found in m_invalid_blocks");
return true;
}