pub trait TxPool: Send + Sync {
    // Required method
    fn get_includable_txs(
        &self,
        block_height: BlockHeight,
        max_gas: u64
    ) -> Vec<ArcPoolTx>;
}

Required Methods§

source

fn get_includable_txs( &self, block_height: BlockHeight, max_gas: u64 ) -> Vec<ArcPoolTx>

Implementors§