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