From c4950613df7df4e95e4edf4992b99f430db6b1ee Mon Sep 17 00:00:00 2001 From: erhant Date: Fri, 21 Aug 2026 11:05:49 +0300 Subject: [PATCH] chore: forgot to uncomment the lint --- lez/sequencer/core/src/gossip/validation.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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),