Skip to content

Commit 9991cf1

Browse files
committed
feat: clippy work around
1 parent 154af49 commit 9991cf1

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

crates/uni-v4-common/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
pub mod pools;
2-
mod pools_impl;
2+
3+
#[allow(unused)]
4+
pub mod pools_impl;
35
mod shared_pools;
46
pub mod traits;
57
pub mod updates;

crates/uni-v4-common/src/pools.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,5 @@ pub mod shared {
33
pub use crate::shared_pools::*;
44
}
55

6-
/// Single-threaded pool implementation without locking
7-
pub mod pools {
8-
pub use crate::pools_impl::*;
9-
}
10-
116
// Re-export the shared version as default for backward compatibility
127
pub use crate::shared_pools::{PoolError, PoolId, SwapSimulationError, UniswapPools};

crates/uni-v4-common/src/pools_impl.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(unused, dead_code)]
12
use std::collections::HashMap;
23

34
use alloy_primitives::{B256, FixedBytes};

0 commit comments

Comments
 (0)