We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5521b0 commit 3834543Copy full SHA for 3834543
crates/rpc/src/debug/endpoints.rs
@@ -102,9 +102,7 @@ where
102
response_tri!(res.ok_or_else(|| EthApiError::HeaderNotFound(meta.block_hash.into())));
103
104
// Load trevm at the start of the block (i.e. before any transactions are applied)
105
- let mut trevm = response_tri!(
106
- ctx.trevm(crate::LoadState::Before, block.header()).map_err(EthApiError::from)
107
- );
+ let mut trevm = response_tri!(ctx.trevm(crate::LoadState::Before, block.header()));
108
109
// Apply all transactions in the block up to (but not including) the
110
// target one
0 commit comments