chore: forgot to uncomment the lint

This commit is contained in:
erhant
2026-08-21 14:56:08 +03:00
parent 84c798935c
commit c4950613df
+5 -4
View File
@@ -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),