From cf823f6f3c0662f5e392280d2cea71030af2618d Mon Sep 17 00:00:00 2001 From: Grzegorz Prusak Date: Mon, 22 Sep 2025 12:54:49 +0200 Subject: [PATCH] fix --- internal/consensus/reactor.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/consensus/reactor.go b/internal/consensus/reactor.go index 04017ae91..83ce2875e 100644 --- a/internal/consensus/reactor.go +++ b/internal/consensus/reactor.go @@ -502,7 +502,9 @@ func (r *Reactor) gossipDataForCatchup(ctx context.Context, rs *cstypes.RoundSta if err != nil { // sleep to avoid retrying too fast time.Sleep(r.state.config.PeerGossipSleepDuration) + return } + ps.SetHasProposalBlockPart(prs.Height, prs.Round, index) return }