chore: move accesslist tests (#13680)

This commit is contained in:
Matthias Seitz
2025-01-06 21:23:27 +01:00
committed by GitHub
parent 721a581180
commit 5e659b3130
3 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,9 @@ pub use alloy_consensus::transaction::{TransactionInfo, TransactionMeta};
use crate::{InMemorySize, MaybeCompact, MaybeSerde};
use core::{fmt, hash::Hash};
#[cfg(test)]
mod access_list;
/// Helper trait that unifies all behaviour required by transaction to support full node operations.
pub trait FullTransaction: Transaction + MaybeCompact {}

View File

@ -48,7 +48,6 @@ pub use tx_type::TxType;
pub mod signature;
pub mod util;
pub(crate) mod access_list;
mod pooled;
mod tx_type;