Skip to content

Commit

Permalink
Fix bug (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
calintje authored Nov 21, 2024
1 parent 3263036 commit 45165ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts-sdk/whirlpool/src/increaseLiquidity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ async function internalOpenPositionInstructions(
whirlpool: whirlpool.address,
funder,
tickArray: lowerTickArrayAddress,
startTickIndex: lowerTickIndex,
startTickIndex: lowerTickArrayIndex,
}),
);
nonRefundableRent += calculateMinimumBalanceForRentExemption(
Expand All @@ -405,7 +405,7 @@ async function internalOpenPositionInstructions(
whirlpool: whirlpool.address,
funder,
tickArray: upperTickArrayAddress,
startTickIndex: upperTickIndex,
startTickIndex: upperTickArrayIndex,
}),
);
nonRefundableRent += calculateMinimumBalanceForRentExemption(
Expand Down

0 comments on commit 45165ad

Please sign in to comment.