From b2be5f956f3c2cd72d29b0b6e75ac0c2b794f6bd Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Mon, 25 Jul 2022 11:06:22 +0200 Subject: [PATCH] eth/catalyst: better warning for ttd not configured (#25394) --- 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 a72e1c41e..f0f7be7bc 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -62,7 +62,7 @@ type ConsensusAPI struct { // The underlying blockchain needs to have a valid terminal total difficulty set. func NewConsensusAPI(eth *eth.Ethereum) *ConsensusAPI { if eth.BlockChain().Config().TerminalTotalDifficulty == nil { - log.Warn("Engine API started without valid total difficulty") + log.Warn("Engine API started but chain not configured for merge yet") } return &ConsensusAPI{ eth: eth,