From 23e1bc9771e3a988bd3f4dc6caf9be8007b3d46b Mon Sep 17 00:00:00 2001
From: TBC Dev <48684072+tbcd@users.noreply.github.com>
Date: Tue, 5 Apr 2022 09:06:12 +0800
Subject: [PATCH] Fix block hash announces (#3819)

---
 turbo/stages/headerdownload/header_algos.go | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/turbo/stages/headerdownload/header_algos.go b/turbo/stages/headerdownload/header_algos.go
index 97841c1162..b9a0bd8a65 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
-- 
GitLab