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

Re-export the core configuration traits. 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§

§

impl RethTransactionPoolConfig for TxPoolArgs