From 9e90338f5951860ea3551b44b45796266fed4036 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 29 Sep 2025 14:15:16 -0400 Subject: [PATCH] fix: remove dbg --- crates/test-utils/tests/basic_sim.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/test-utils/tests/basic_sim.rs b/crates/test-utils/tests/basic_sim.rs index cdc7638..ed218a6 100644 --- a/crates/test-utils/tests/basic_sim.rs +++ b/crates/test-utils/tests/basic_sim.rs @@ -56,8 +56,6 @@ pub async fn test_simulator() { ); } - let time = std::time::Instant::now(); - // Set up the simulator let built = BlockBuild::<_, NoOpInspector>::new( db, @@ -81,8 +79,6 @@ pub async fn test_simulator() { let tx2 = w[1].as_eip1559().unwrap().tx().max_priority_fee_per_gas; tx1 >= tx2 })); - - dbg!(time.elapsed()); } // utilities below this point are reproduced from other places, however,