From 0e69eb6322a894645fcefe367042d9bd8f664ac5 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Wed, 18 Jun 2025 14:44:22 +0800 Subject: [PATCH] eth/catalyst: simplify log --- 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 03eb3c7b61..e835344ca1 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -283,7 +283,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 retrieve from network", "hash", update.HeadBlockHash) + log.Warn("Fetching the unknown forkchoice head from network", "hash", update.HeadBlockHash) retrievedHead, err := api.eth.Downloader().GetHeader(update.HeadBlockHash) if err != nil { log.Warn("Could not retrieve unknown head from peers")