diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:29:46 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:29:46 -0500 |
commit | 8fb0d7e0b4edd1b10600f6f921d14eb3bb2e7a3a (patch) | |
tree | 28b73292f032486d3f3841bc7b215f61ccd83b3c /src/cryptonote_protocol | |
parent | Merge pull request #6541 (diff) | |
parent | protocol: don't drop a connection if we can't get a compatible chain (diff) | |
download | monero-8fb0d7e0b4edd1b10600f6f921d14eb3bb2e7a3a.tar.xz |
Merge pull request #6543
44e3782 protocol: don't drop a connection if we can't get a compatible chain (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index 5fc1b2f2e..7ec80104b 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -1721,7 +1721,6 @@ skip: if(!m_core.find_blockchain_supplement(arg.block_ids, !arg.prune, r)) { LOG_ERROR_CCONTEXT("Failed to handle NOTIFY_REQUEST_CHAIN."); - drop_connection(context, false, false); return 1; } MLOG_P2P_MESSAGE("-->>NOTIFY_RESPONSE_CHAIN_ENTRY: m_start_height=" << r.start_height << ", m_total_height=" << r.total_height << ", m_block_ids.size()=" << r.m_block_ids.size()); |