Skip to content

Commit

Permalink
fix(tests): js-tracer feature
Browse files Browse the repository at this point in the history
Signed-off-by: jsvisa <[email protected]>
  • Loading branch information
jsvisa committed Oct 11, 2024
1 parent e7a379f commit 71c0a77
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/it/geth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ use revm::{
},
DatabaseCommit,
};
use revm_inspectors::tracing::{
js::JsInspector, MuxInspector, TracingInspector, TracingInspectorConfig,
};
use revm_inspectors::tracing::{MuxInspector, TracingInspector, TracingInspectorConfig};

#[cfg(feature = "js-tracer")]
use revm_inspectors::tracing::js::JsInspector;

#[test]
fn test_geth_calltracer_logs() {
Expand Down Expand Up @@ -344,6 +345,7 @@ fn test_geth_inspector_reset() {
}

#[test]
#[cfg(feature = "js-tracer")]
fn test_geth_jstracer_op_gascost() {
/*
pragma solidity ^0.8.13;
Expand Down

0 comments on commit 71c0a77

Please sign in to comment.