From 22e075ff800c5c5fa2c3eeaeff0241ef27638f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felf=C3=B6ldi=20Zsolt?= Date: Mon, 8 Apr 2024 08:32:36 +0200 Subject: [PATCH] Update beacon/blsync/block_sync.go Co-authored-by: lightclient <14004106+lightclient@users.noreply.github.com> --- beacon/blsync/block_sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/blsync/block_sync.go b/beacon/blsync/block_sync.go index 23c3169fe0..3ab156354d 100755 --- a/beacon/blsync/block_sync.go +++ b/beacon/blsync/block_sync.go @@ -138,7 +138,7 @@ func (s *beaconBlockSync) updateEventFeed() { parent, ok := s.recentBlocks.Get(head.Header.ParentRoot) if !ok || parent.Slot()/params.EpochLength == fe { return // head is at first slot of next epoch, wait for finality update - //TODO trt to fetch finality update directly if subscription does not deliver + //TODO: try to fetch finality update directly if subscription does not deliver } } }