Skip to content

Commit

Permalink
Update src/interfaces/IPoolInitializer.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Alice <[email protected]>
  • Loading branch information
gretzke and hensha256 authored Nov 27, 2024
1 parent 6a2139c commit 43f4485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/IPoolInitializer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ interface IPoolInitializer {
/// @dev If the pool is already initialized, this function will not revert and just return type(int24).max
/// @param key The PoolKey of the pool to initialize
/// @param sqrtPriceX96 The initial sqrtPriceX96 of the pool
/// @return tick The current tick of the pool
/// @return tick The current tick of the pool, or type(int24).max if the pool creation failed, or the pool already existed
function initializePool(PoolKey calldata key, uint160 sqrtPriceX96) external payable returns (int24);
}

0 comments on commit 43f4485

Please sign in to comment.