Merge pull request #3912

de742b5c blockchain: demote a hash-of-hashes validation warning to debug (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-06-03 18:38:30 +02:00
commit f12b277d20
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -3911,7 +3911,7 @@ uint64_t Blockchain::prevalidate_block_hashes(uint64_t height, const std::list<c
// add to the known hashes array
if (!valid)
{
MWARNING("invalid hash for blocks " << n * HASH_OF_HASHES_STEP << " - " << (n * HASH_OF_HASHES_STEP + HASH_OF_HASHES_STEP - 1));
MDEBUG("invalid hash for blocks " << n * HASH_OF_HASHES_STEP << " - " << (n * HASH_OF_HASHES_STEP + HASH_OF_HASHES_STEP - 1));
break;
}