Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Nov 2, 2023
1 parent 6184014 commit 3116960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/tree_availability/src/world_tree/tree_updater.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::sync::atomic::{AtomicBool, AtomicU64};
use std::sync::atomic::{AtomicU64};
use std::sync::Arc;
use std::time::Duration;

Expand All @@ -15,7 +15,7 @@ use super::block_scanner::BlockScanner;
use super::tree_data::TreeData;
use crate::error::TreeAvailabilityError;
use crate::world_tree::abi::DeleteIdentitiesWithDeletionProofAndBatchSizeAndPackedDeletionIndicesAndPreRootCall;
use crate::world_tree::{abi, Hash};
use crate::world_tree::{Hash};

/// Manages the synchronization of the World Tree with it's onchain representation.
pub struct TreeUpdater<M: Middleware> {
Expand Down

0 comments on commit 3116960

Please sign in to comment.