diff --git a/src/interfaces/IPoolInitializer.sol b/src/interfaces/IPoolInitializer.sol index 3a2115ee..39460f3e 100644 --- a/src/interfaces/IPoolInitializer.sol +++ b/src/interfaces/IPoolInitializer.sol @@ -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); }