diff --git a/crates/consensus/beacon/src/engine/message.rs b/crates/consensus/beacon/src/engine/message.rs index 8c2ecc703686..dc3f0b8aaa2d 100644 --- a/crates/consensus/beacon/src/engine/message.rs +++ b/crates/consensus/beacon/src/engine/message.rs @@ -178,14 +178,13 @@ impl Display for BeaconEngineMessage { payload.block_hash() ) } - Self::ForkchoiceUpdated { state, payload_attrs, version, .. } => { + Self::ForkchoiceUpdated { state, payload_attrs, .. } => { // we don't want to print the entire payload attributes, because for OP this // includes all txs write!( f, - "ForkchoiceUpdated {{ state: {state:?}, has_payload_attributes: {}, version: {} }}", + "ForkchoiceUpdated {{ state: {state:?}, has_payload_attributes: {} }}", payload_attrs.is_some(), - version, ) } Self::TransitionConfigurationExchanged => {