Skip to content

Commit

Permalink
remove EVMError #[from]
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Nov 13, 2024
1 parent 03b0ca4 commit a595c61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/driver/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ where
FromBlock(#[from] FromBlockError),
/// Error decoding or encoding RLP.
#[error("RLP error: {0}")]
Rlp(#[from] alloy_rlp::Error),
Rlp(alloy_rlp::Error),
}
2 changes: 1 addition & 1 deletion crates/executor/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub enum ExecutorError {
TrieDBError(#[from] TrieDBError),
/// Execution error.
#[error("Execution error: {0}")]
ExecutionError(#[from] EVMError<TrieDBError>),
ExecutionError(EVMError<TrieDBError>),
/// Signature error.
#[error("Signature error: {0}")]
SignatureError(alloy_primitives::SignatureError),
Expand Down

0 comments on commit a595c61

Please sign in to comment.