Skip to content

Commit

Permalink
removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Oct 27, 2023
1 parent d7c9209 commit 7b0db93
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/tree_availability/tests/inclusion_proof.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::str::FromStr;

use common::test_utilities::chain_mock::{spawn_mock_chain, MockChain};
use ethers::abi::{FunctionExt, Uint};
use ethers::providers::Middleware;
use ethers::types::U256;
use futures::stream::FuturesUnordered;
Expand All @@ -16,7 +15,7 @@ use tree_availability::TreeAvailabilityService;
async fn test_inclusion_proof() -> eyre::Result<()> {
// Initialize a new mock tree
let MockChain {
anvil,
anvil: _anvil,
middleware,
mock_world_id,
..
Expand All @@ -26,7 +25,6 @@ async fn test_inclusion_proof() -> eyre::Result<()> {
let identity_commitments =
vec![U256::from(1), U256::from(2), U256::from(3)];

let world_tree_address = mock_world_id.address();
let world_tree_creation_block =
middleware.get_block_number().await?.as_u64();

Expand Down

0 comments on commit 7b0db93

Please sign in to comment.