protocol: handle receiving a block hash we've not added yet

This commit is contained in:
moneromooo-monero 2021-01-02 18:28:09 +00:00
parent 2107337999
commit c2295f55b8
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -2593,12 +2593,17 @@ skip:
} }
int where; int where;
const bool have_block = m_core.have_block_unlocked(arg.m_block_ids[i], &where); const bool have_block = m_core.have_block_unlocked(arg.m_block_ids[i], &where);
if (first && !have_block) if (first)
{
if (!have_block && !m_block_queue.requested(arg.m_block_ids[i]) && !m_block_queue.have(arg.m_block_ids[i]))
{ {
LOG_ERROR_CCONTEXT("First block hash is unknown, dropping connection"); LOG_ERROR_CCONTEXT("First block hash is unknown, dropping connection");
drop_connection_with_score(context, 5, false); drop_connection_with_score(context, 5, false);
return 1; return 1;
} }
if (!have_block)
expect_unknown = true;
}
if (!first) if (!first)
{ {
// after the first, blocks may be known or unknown, but if they are known, // after the first, blocks may be known or unknown, but if they are known,