diff --git a/lez/sequencer/core/src/gossip/validation.rs b/lez/sequencer/core/src/gossip/validation.rs index 80c5a9d42..aa5a60e97 100644 --- a/lez/sequencer/core/src/gossip/validation.rs +++ b/lez/sequencer/core/src/gossip/validation.rs @@ -9,10 +9,11 @@ use common::transaction::LeeTransaction; const BLOCK_HEADER_OVERHEAD: u64 = 200; #[derive(Debug)] -// #[expect( -// clippy::large_enum_variant, -// reason = "the large Accept variant is the common outcome and the enum is short-lived per -// gossiped message, so boxing it would only add a heap allocation on the hot validation path" )] +#[expect( + clippy::large_enum_variant, + reason = "the large Accept variant is the common outcome and the enum is short-lived per +gossiped message, so boxing it would only add a heap allocation on the hot validation path" +)] pub enum TxEvaluation { /// Structurally valid and authenticated; forward and admit. Accept(LeeTransaction),