Trait fuel_core_producer::ports::TxPool

source ·
pub trait TxPool: Send + Sync {
    type TxSource;

    // Required method
    fn get_source(&self, block_height: BlockHeight) -> Self::TxSource;
}

Required Associated Types§

source

type TxSource

The source of the transactions used by the executor.

Required Methods§

source

fn get_source(&self, block_height: BlockHeight) -> Self::TxSource

Returns the source of includable transactions.

Implementors§