pub trait ExecuteEvm: ContextSetters {
type Output;
// Required method
fn transact_previous(&mut self) -> Self::Output;
// Provided method
fn transact(&mut self, tx: Self::Tx) -> Self::Output { ... }
}
Expand description
Execute EVM transactions.