diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-16 18:08:06 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-16 18:08:07 +0200 |
commit | 0f27fc57acb708c48523ada6b67304c81da4aa3c (patch) | |
tree | 8d647b179918138b3e1ece874ddf8f2778340e7d /src/cryptonote_protocol | |
parent | Merge pull request #3322 (diff) | |
parent | Fix typos in various files (diff) | |
download | monero-0f27fc57acb708c48523ada6b67304c81da4aa3c.tar.xz |
Merge pull request #3336
57c0b1ed Fix typos in various files (Dimitris Apostolou)
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index 7c4f16c77..5d91ad569 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -1395,7 +1395,7 @@ skip: const uint64_t first_block_height_needed = span.first; const uint64_t last_block_height_needed = span.first + std::min(span.second, (uint64_t)count_limit) - 1; MDEBUG(context << " gap found, span: " << span.first << " - " << span.first + span.second - 1 << " (" << last_block_height_needed << ")"); - MDEBUG(context << " current known hashes from from " << first_block_height_known << " to " << last_block_height_known); + MDEBUG(context << " current known hashes from " << first_block_height_known << " to " << last_block_height_known); if (first_block_height_needed < first_block_height_known || last_block_height_needed > last_block_height_known) { MDEBUG(context << " we are missing some of the necessary hashes for this gap, requesting chain again"); |