mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
protocol: drop (and increase fails) if most blocks hashes are invalid
This commit is contained in:
parent
8a7b3ff138
commit
f2cb56a2eb
1 changed files with 3 additions and 3 deletions
|
@ -1630,10 +1630,10 @@ skip:
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t n_use_blocks = m_core.prevalidate_block_hashes(arg.start_height, arg.m_block_ids);
|
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");
|
LOG_ERROR_CCONTEXT("Most blocks are invalid, dropping connection");
|
||||||
drop_connection(context, false, false);
|
drop_connection(context, true, false);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue