From 17e016fc571035e3b950810f060b903c2401dbe6 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Wed, 23 Jul 2025 14:39:30 +0800 Subject: [PATCH] eth/protocols/snap: fix log --- eth/protocols/snap/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/snap/sync.go b/eth/protocols/snap/sync.go index e57f2a1dab..4730d2317b 100644 --- a/eth/protocols/snap/sync.go +++ b/eth/protocols/snap/sync.go @@ -692,8 +692,8 @@ func (s *Syncer) Sync(root common.Hash, cancel chan struct{}) error { // pivot states (e.g., if chain sync takes longer). The initial healing // phase is more important for us. stateHealTimeResettingTimer.Update(time.Since(s.healStartTime)) - s.healStartTime = time.Time{} // zero the start time log.Info("State healing phase is completed", "elapsed", common.PrettyDuration(time.Since(s.healStartTime))) + s.healStartTime = time.Time{} // zero the start time return nil } // Assign all the data retrieval tasks to any free peers