pub trait ExecutableTxIterator<Evm: ConfigureEvm>:
Iterator<Item = Result<Self::Tx, Self::Error>>
+ Send
+ 'static {
type Tx: ExecutableTxFor<Evm> + Clone + Send + Sync + 'static;
type Error: Error + Send + Sync + 'static;
}Expand description
Iterator over executable transactions.