mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
Fix typo (yes I use vi)
This commit is contained in:
parent
fa1f2f695b
commit
6c18451a2b
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ impl Syncer {
|
|||
.collect::<Vec<_>>();
|
||||
let mut offs = 0;
|
||||
for too_old in too_old_pos {
|
||||
let block_h = blocks_downloading.remove(too_oldi - offs);
|
||||
let block_h = blocks_downloading.remove(too_old - offs);
|
||||
debug!(
|
||||
LOGGER,
|
||||
"Download request expired for {}, will re-issue.",
|
||||
|
|
Loading…
Reference in a new issue