From 4217f3e04329e3243eee0c7b8a820ac0aea2b336 Mon Sep 17 00:00:00 2001 From: Danial Date: Thu, 17 Jul 2025 01:33:42 +0800 Subject: [PATCH] snap sync fixed --- 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 9982d0f55c..ec3a0e94e8 100644 --- a/eth/protocols/snap/sync.go +++ b/eth/protocols/snap/sync.go @@ -3108,7 +3108,7 @@ func (s *Syncer) reportSyncProgress(force bool) { accountFills, ).Uint64()) // Don't report anything until we have a meaningful progress - if estBytes < 1.0 { + if estBytes < 1.0 || float64(synced) > estBytes { return } elapsed := time.Since(s.startTime)