Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/handler/src/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ pub type FrameInitResult<'a, F> = ItemOrResult<&'a mut F, <F as FrameTr>::FrameR
#[auto_impl(&mut, Box)]
pub trait FrameTr {
/// The result type returned when a frame completes execution.
type FrameResult: Into<FrameResult>;
type FrameResult: From<FrameResult>;
/// The initialization type used to create a new frame.
type FrameInit: Into<FrameInit>;
type FrameInit: From<FrameInit>;
}

/// A trait that integrates context, instruction set, and precompiles to create an EVM struct.
Expand Down
Loading