feat: bump revm (#18999)

This commit is contained in:
Arsenii Kulikov
2025-10-15 21:55:35 +04:00
committed by GitHub
parent fd4597e9bd
commit 7779ed8c73
40 changed files with 380 additions and 432 deletions

View File

@@ -18,7 +18,7 @@ use reth_ethereum::{
evm::{
primitives::{Database, EvmEnv},
revm::{
context::{Context, TxEnv},
context::{BlockEnv, Context, TxEnv},
context_interface::result::{EVMError, HaltReason},
inspector::{Inspector, NoOpInspector},
interpreter::interpreter::EthInterpreter,
@@ -54,6 +54,7 @@ impl EvmFactory for MyEvmFactory {
type HaltReason = HaltReason;
type Context<DB: Database> = EthEvmContext<DB>;
type Spec = SpecId;
type BlockEnv = BlockEnv;
type Precompiles = PrecompilesMap;
fn create_evm<DB: Database>(&self, db: DB, input: EvmEnv) -> Self::Evm<DB, NoOpInspector> {