From d1391847419f1ce0353cdad3f84a6e6c897b2cf2 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Wed, 28 May 2025 16:25:17 +0200 Subject: [PATCH] Update eth/catalyst/api.go --- eth/catalyst/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index 6bd43f26d8..b3ae8ee1b3 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -337,7 +337,7 @@ func (api *ConsensusAPI) forkchoiceUpdated(update engine.ForkchoiceStateV1, payl // that should be fixed, not papered over. header := api.remoteBlocks.get(update.HeadBlockHash) if header == nil { - log.Warn("Forkchoice requested unknown head, trying to retrive it from a random peer", "hash", update.HeadBlockHash) + log.Warn("Forkchoice requested unknown head, trying to retrieve it from a random peer", "hash", update.HeadBlockHash) retrievedHead, err := api.eth.Downloader().GetHeader(update.HeadBlockHash) if err != nil { log.Warn("Could not retrieve unknown head from peers")