Skip to content

Commit

Permalink
Merge pull request #142 from propeller-heads/lp/pub-tick-list
Browse files Browse the repository at this point in the history
refactor: make TickList public
  • Loading branch information
louise-poole authored Feb 10, 2025
2 parents 7faf16b + 82a6062 commit 7e0971f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/evm/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ pub mod u256_num;
pub mod uniswap_v2;
pub mod uniswap_v3;
pub mod uniswap_v4;
pub(crate) mod utils;
pub mod utils;
pub mod vm;
2 changes: 1 addition & 1 deletion src/evm/protocol/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub(crate) mod uniswap;
pub mod uniswap;

use alloy_primitives::Address;
use tycho_core::Bytes;
Expand Down
2 changes: 1 addition & 1 deletion src/evm/protocol/utils/uniswap/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub(crate) mod liquidity_math;
mod solidity_math;
pub(crate) mod sqrt_price_math;
pub(crate) mod swap_math;
pub(crate) mod tick_list;
pub mod tick_list;
pub(crate) mod tick_math;

#[derive(Debug)]
Expand Down

0 comments on commit 7e0971f

Please sign in to comment.