From 4d4826290bf1e09d0c36fb8c6a21b6449c0cdc9f Mon Sep 17 00:00:00 2001 From: Daniel Freire Date: Thu, 28 Nov 2024 16:27:55 -0300 Subject: [PATCH] remove debug log --- src/eth/storage/temporary/inmemory.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/eth/storage/temporary/inmemory.rs b/src/eth/storage/temporary/inmemory.rs index 78761a1bb..60030bf8d 100644 --- a/src/eth/storage/temporary/inmemory.rs +++ b/src/eth/storage/temporary/inmemory.rs @@ -119,8 +119,6 @@ impl TemporaryStorage for InMemoryTemporaryStorage { // check conflicts let mut states = self.lock_write(); if let TransactionExecution::Local(tx) = &tx { - tracing::info!("hereeeeee"); - let expected_input = EvmInput::from_eth_transaction(tx.input.clone(), states.head.block.header.clone()); if expected_input != tx.evm_input {