diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-28 00:42:58 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-28 00:42:58 +0100 |
commit | 63d8dddc0abab501d56b03659b928f472651b978 (patch) | |
tree | b10ae6ed20d676976ec73799b0cae0a834d4359c | |
parent | Merge pull request #2349 (diff) | |
download | monero-63d8dddc0abab501d56b03659b928f472651b978.tar.xz |
cryptonote_protocol: remove old spans when received as old blocks
fixes getting those in a loop
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index e762cf9c8..4fe1f1fc1 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -930,6 +930,7 @@ namespace cryptonote { const uint64_t subchain_height = start_height + arg.blocks.size(); LOG_DEBUG_CC(context, "These are old blocks, ignoring: blocks " << start_height << " - " << (subchain_height-1) << ", blockchain height " << m_core.get_current_blockchain_height()); + m_block_queue.remove_spans(context.m_connection_id, start_height); goto skip; } |