arb_txpool/
lib.rs

1//! Arbitrum transaction pool.
2//!
3//! Provides the pooled transaction type and validator needed by the
4//! node's transaction pool. Arbitrum L2 does not use blob transactions.
5
6mod transaction;
7pub use transaction::ArbPooledTransaction;