diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-09-02 11:30:21 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-09-02 11:30:21 +0200 |
commit | eb8dac52df57d358dda3075600cd5772eca2533a (patch) | |
tree | c22198b5e81df3472489c3d66c4fdc634ec34841 | |
parent | Merge pull request #2362 (diff) | |
parent | cryptonote_protocol: remove old spans when received as old blocks (diff) | |
download | monero-eb8dac52df57d358dda3075600cd5772eca2533a.tar.xz |
Merge pull request #2364
63d8dddc cryptonote_protocol: remove old spans when received as old blocks (moneromooo-monero)
-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; } |