pub trait ExecutableTxIterator<Evm: ConfigureEvm>:
Iterator<Item = Result<Self::Tx, Self::Error>>
+ Send
+ 'static {
type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static;
type Error: Error + Send + Sync + 'static;
}
Expand description
Iterator over executable transactions.
Required Associated Types§
Sourcetype Tx: ExecutableTxFor<Evm> + Clone + Send + 'static
type Tx: ExecutableTxFor<Evm> + Clone + Send + 'static
The executable transaction type iterator yields.