aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_protocol/cryptonote_protocol_handler.inl
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2018-03-01 13:36:19 +0200
committerDimitris Apostolou <rex@MacBook-Pro-2011.local>2018-03-15 18:25:38 +0200
commit57c0b1ed9f15ca27892a8737156c3b8e32a1625e (patch)
tree8ca78ded5aa561697a8d1fd7827604aa51a5f45f /src/cryptonote_protocol/cryptonote_protocol_handler.inl
parentMerge pull request #3398 (diff)
downloadmonero-57c0b1ed9f15ca27892a8737156c3b8e32a1625e.tar.xz
Fix typos in various files
Diffstat (limited to '')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl2
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");