Spurious mut, different lint level on CI

This commit is contained in:
Ignotus Peverell
2017-10-22 09:14:18 +00:00
parent fc6349f26c
commit 3237df70f6
+1 -1
View File
@@ -161,7 +161,7 @@ impl Syncer {
// retry blocks not downloading
let now = Instant::now();
for mut download in blocks_downloading.deref_mut() {
for download in blocks_downloading.deref_mut() {
let elapsed = (now - download.start_time).as_secs();
if download.retries >= 8 {
panic!("Failed to download required block {}", download.hash);