Trait reth::cli::config::RethTransactionPoolConfig

pub trait RethTransactionPoolConfig {
    // Required method
    fn pool_config(&self) -> PoolConfig;
}
Expand description

A trait that provides all basic config values for the transaction pool and is implemented by the TxPoolArgs type.

Required Methods§

fn pool_config(&self) -> PoolConfig

Returns transaction pool configuration.

Implementors§