From 57234d8ef371323cc088531b6fa537c0dee4872a Mon Sep 17 00:00:00 2001 From: vyzo Date: Thu, 29 Oct 2020 19:13:45 +0200 Subject: [PATCH] fix spelling in comment to satisfy linter this is ridiculous; since when do linters apply spellchecking on comments??? --- chain/sync_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/sync_manager.go b/chain/sync_manager.go index 8af4c9d5e..e8eb031c9 100644 --- a/chain/sync_manager.go +++ b/chain/sync_manager.go @@ -253,7 +253,7 @@ func (sm *syncManager) handleWorkerStatus(status workerStatus) { } else { // add to the recently synced buffer sm.recent.Push(ws.ts) - // if we are still in intial sync and this was fast enough, mark the end of the initial sync + // if we are still in initial sync and this was fast enough, mark the end of the initial sync if !sm.initialSyncDone && ws.dt < InitialSyncTimeThreshold { sm.initialSyncDone = true }