Skip to content

Commit

Permalink
feat: Split inspector.rs (#1958)
Browse files Browse the repository at this point in the history
* split inspector

* fixed errors

* fmt

* fixed failing test

* fmt

* clippy fix

* fmt
  • Loading branch information
varun-doshi authored Dec 31, 2024
1 parent e3c7abf commit 6f3d9f8
Show file tree
Hide file tree
Showing 9 changed files with 501 additions and 452 deletions.
5 changes: 4 additions & 1 deletion bins/revme/src/cmd/evmrunner.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
use clap::Parser;
use database::BenchmarkDB;
use inspector::{inspector_handler, inspectors::TracerEip3155, InspectorContext, InspectorMainEvm};
use inspector::{
inspector_context::InspectorContext, inspector_handler, inspectors::TracerEip3155,
InspectorMainEvm,
};
use revm::{
bytecode::{Bytecode, BytecodeDecodeError},
handler::EthHandler,
Expand Down
5 changes: 4 additions & 1 deletion bins/revme/src/cmd/statetest/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ use super::{
};
use database::State;
use indicatif::{ProgressBar, ProgressDrawTarget};
use inspector::{inspector_handler, inspectors::TracerEip3155, InspectorContext, InspectorMainEvm};
use inspector::{
inspector_context::InspectorContext, inspector_handler, inspectors::TracerEip3155,
InspectorMainEvm,
};
use revm::{
bytecode::Bytecode,
context::{block::BlockEnv, cfg::CfgEnv, tx::TxEnv},
Expand Down
Loading

0 comments on commit 6f3d9f8

Please sign in to comment.