pub trait TransactionsSource {
    // Required method
    fn next(&self, gas_limit: u64) -> Vec<Transaction>;
}

Required Methods§

source

fn next(&self, gas_limit: u64) -> Vec<Transaction>

Returns the next batch of transactions to satisfy the gas_limit.

Implementors§