From e8e8d2f81c7b6df257111725d0454c4fcb784d7d Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Wed, 27 Mar 2024 19:57:55 +0800 Subject: [PATCH] debug --- eth/catalyst/api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index 58566a47f..0c9ef8f58 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -223,6 +223,7 @@ func (api *ConsensusAPI) ForkchoiceUpdatedV3(update engine.ForkchoiceStateV1, pa if params.BeaconRoot == nil { return engine.STATUS_INVALID, engine.InvalidParams.With(errors.New("missing beacon root")) } + log.Debug("forkchoiceupdatedv3 args", "update", update, "params", params) if api.eth.BlockChain().Config().LatestFork(params.Timestamp) != forks.Cancun { return engine.STATUS_INVALID, engine.UnsupportedFork.With(errors.New("forkchoiceUpdatedV3 must only be called for cancun payloads")) }