Skip to content

Commit

Permalink
fix: mint params should use updated value
Browse files Browse the repository at this point in the history
  • Loading branch information
r3v4s committed Dec 24, 2024
1 parent 5689bf0 commit 09cff7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions position/type.gno
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ func newMintParams(input ProcessedMintInput, mintInput MintInput) MintParams {
token0: input.tokenPair.token0,
token1: input.tokenPair.token1,
fee: mintInput.fee,
tickLower: mintInput.tickLower,
tickUpper: mintInput.tickUpper,
tickLower: input.tickLower,
tickUpper: input.tickUpper,
amount0Desired: input.amount0Desired,
amount1Desired: input.amount1Desired,
amount0Min: input.amount0Min,
Expand Down

0 comments on commit 09cff7b

Please sign in to comment.