Trait TxResult
pub trait TxResult {
type HaltReason;
// Required method
fn result(&self) -> &ExecResultAndState<ExecutionResult<Self::HaltReason>>;
}Expand description
A result of transaction execution.
Required Associated Types§
type HaltReason
type HaltReason
Halt reason.
Required Methods§
fn result(&self) -> &ExecResultAndState<ExecutionResult<Self::HaltReason>>
fn result(&self) -> &ExecResultAndState<ExecutionResult<Self::HaltReason>>
Returns the inner EVM result.