Trait revm::Transact[][src]

pub trait Transact {
    fn transact(&mut self) -> (ExitReason, TransactOut, u64, Map<H160, Account>);
}

Required methods

Do transaction. Return ExitReason, Output for call or Address if we are creating contract, gas spend, State that needs to be applied.

Implementors