mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-26 03:41:13 +00:00
chore: forgot to uncomment the lint
This commit is contained in:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user