Trait JournalExt
pub trait JournalExt {
// Required methods
fn logs(&self) -> &[Log];
fn last_journal(&self) -> &[JournalEntry];
fn evm_state(&self) -> &HashMap<Address, Account, RandomState>;
fn evm_state_mut(&mut self) -> &mut HashMap<Address, Account, RandomState>;
}