Skip to content

Commit

Permalink
fix: run test fail issue
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyhyde committed Dec 20, 2024
1 parent ab7c9c5 commit 15ee5a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions position/_RPC_api.gno
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ func unclaimedFee(tokenId uint64) (*i256.Int, *i256.Int) {

currentTick := pool.Slot0Tick()

feeGrowthGlobal0X128 := i256.FromUint256(pool.GetFeeGrowthGlobal0X128())
feeGrowthGlobal1X128 := i256.FromUint256(pool.GetFeeGrowthGlobal1X128())
feeGrowthGlobal0X128 := i256.FromUint256(pool.FeeGrowthGlobal0X128())
feeGrowthGlobal1X128 := i256.FromUint256(pool.FeeGrowthGlobal1X128())

tickUpperFeeGrowthOutside0X128 := i256.FromUint256(pool.GetTickFeeGrowthOutside0X128(tickUpper))
tickUpperFeeGrowthOutside1X128 := i256.FromUint256(pool.GetTickFeeGrowthOutside1X128(tickUpper))
Expand Down

0 comments on commit 15ee5a1

Please sign in to comment.