Merge pull request #3914

107eec4d protocol: drop (and increase fails) if most blocks hashes are invalid (moneromooo-monero)
pull/88/head
Riccardo Spagni 6 years ago
commit e2c39f6b59
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -1630,10 +1630,10 @@ skip:
}
uint64_t n_use_blocks = m_core.prevalidate_block_hashes(arg.start_height, arg.m_block_ids);
if (n_use_blocks == 0)
if (n_use_blocks + HASH_OF_HASHES_STEP <= arg.m_block_ids.size())
{
LOG_ERROR_CCONTEXT("Peer yielded no usable blocks, dropping connection");
drop_connection(context, false, false);
LOG_ERROR_CCONTEXT("Most blocks are invalid, dropping connection");
drop_connection(context, true, false);
return 1;
}

Loading…
Cancel
Save