From df57c2562725741e0a56de5b0f394c0be89c0716 Mon Sep 17 00:00:00 2001 From: Goran Rojovic Date: Thu, 2 Nov 2023 10:26:22 +0100 Subject: [PATCH] Comments fix --- syncer/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncer/types.go b/syncer/types.go index a6f3f7a4c0..c8643d08ea 100644 --- a/syncer/types.go +++ b/syncer/types.go @@ -70,7 +70,7 @@ type Syncer interface { HasSyncPeer() bool // Sync starts routine to sync blocks Sync(func(*types.FullBlock) bool) error - // Indicates if syncer is syncing with the best peer + // IsSyncing indicates if syncer is syncing with the best peer IsSyncing() bool }