Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrq committed Aug 6, 2024
1 parent 71c4bc4 commit 7aaa9e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions crates/evm/core/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use alloy_serde::WithOtherFields;
use eyre::Context;
use foundry_common::{is_known_system_sender, SYSTEM_TRANSACTION_TYPE};
use foundry_zksync_core::{
convert::{ConvertH160, ConvertRU256},
convert::{ConvertH160},
ACCOUNT_CODE_STORAGE_ADDRESS, L2_BASE_TOKEN_ADDRESS, NONCE_HOLDER_ADDRESS,
};
use itertools::Itertools;
Expand All @@ -29,7 +29,7 @@ use revm::{
Database, DatabaseCommit, JournaledState,
};
use std::{
collections::{hash_map::Entry, BTreeMap, HashMap, HashSet},
collections::{BTreeMap, HashMap, HashSet},
time::Instant,
};

Expand Down
6 changes: 1 addition & 5 deletions crates/forge/tests/it/zk/issues.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ use foundry_test_utils::Filter;
#[tokio::test(flavor = "multi_thread")]
async fn test_zk_issue497() {
let runner = TEST_DATA_DEFAULT.runner_zksync();
let filter = Filter::new(
"*",
"Issue497",
".*",
);
let filter = Filter::new("*", "Issue497", ".*");

TestConfig::with_filter(runner, filter).evm_spec(SpecId::SHANGHAI).run().await;
}

0 comments on commit 7aaa9e2

Please sign in to comment.