Skip to content

Commit

Permalink
add version and debug params
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp committed Nov 1, 2024
1 parent 3326347 commit 57f87aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/consensus/beacon/src/engine/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,14 +178,13 @@ impl<Engine: EngineTypes> Display for BeaconEngineMessage<Engine> {
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 => {
Expand Down

0 comments on commit 57f87aa

Please sign in to comment.