Merge pull request #5104

dc0b86ab block_queue: fix late sanity check off by one (moneromooo-monero)
pull/200/head
Riccardo Spagni 5 years ago
commit 227bf1407e
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -240,7 +240,7 @@ std::pair<uint64_t, uint64_t> block_queue::reserve_span(uint64_t first_block_hei
MDEBUG("reserve_span: early out: first_block_height " << first_block_height << ", last_block_height " << last_block_height << ", max_blocks " << max_blocks);
return std::make_pair(0, 0);
}
if (block_hashes.size() >= last_block_height)
if (block_hashes.size() > last_block_height)
{
MDEBUG("reserve_span: more block hashes than fit within last_block_height: " << block_hashes.size() << " and " << last_block_height);
return std::make_pair(0, 0);

Loading…
Cancel
Save