Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoGiachetta committed Jan 31, 2025
1 parent 6551fab commit 45c68c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions replay/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use starknet_api::block::BlockNumber;
use starknet_api::core::ChainId;
use starknet_api::felt;
use starknet_api::transaction::{TransactionExecutionStatus, TransactionHash};
use state_dump::create_state_dump;
use tracing::{debug, error, info, info_span};
use tracing_subscriber::{util::SubscriberInitExt, EnvFilter};

Expand Down Expand Up @@ -373,7 +372,7 @@ fn main() {
fetch_transaction_with_state(&reader, &hash, flags.clone()).unwrap();
let execution = tx.execute(&mut state, &block_context);
#[cfg(feature = "state_dump")]
create_state_dump(&mut state, block_number, &hash.to_string(), &execution);
state_dump::create_state_dump(&mut state, block_number, &hash.to_string(), &execution);
execution
})
.collect::<Vec<_>>();
Expand Down

0 comments on commit 45c68c6

Please sign in to comment.