diff --git a/turbo/stages/headerdownload/header_algos.go b/turbo/stages/headerdownload/header_algos.go index 97841c116243d370cb31db68783ec4b520147bce..b9a0bd8a6574673f6d43ca43b999f48db6edfa15 100644 --- a/turbo/stages/headerdownload/header_algos.go +++ b/turbo/stages/headerdownload/header_algos.go @@ -801,6 +801,9 @@ func (hd *HeaderDownload) InsertHeaders(hf FeedHeaderFunc, terminalTotalDifficul return false, err } if td != nil { + if hd.seenAnnounces.Pop(link.hash) { + hd.toAnnounce = append(hd.toAnnounce, Announce{Hash: link.hash, Number: link.blockHeight}) + } // Check if transition to proof-of-stake happened and stop forward syncing if terminalTotalDifficulty != nil && td.Cmp(terminalTotalDifficulty) >= 0 { hd.highestInDb = link.blockHeight