Skip to content

Commit 7c370a0

Browse files
authored
Merge branch 'main' into fix-fuzz-runs
2 parents 8723b56 + b8dcc0a commit 7c370a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/shared/FeeMath.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ library FeeMath {
3535
(uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128) =
3636
manager.getPositionInfo(poolId, address(posm), config.tickLower, config.tickUpper, bytes32(tokenId));
3737

38-
(uint256 feeGrowthInside0X218, uint256 feeGrowthInside1X128) =
38+
(uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128) =
3939
manager.getFeeGrowthInside(poolId, config.tickLower, config.tickUpper);
4040

4141
feesOwed = getFeesOwed(
42-
feeGrowthInside0X218, feeGrowthInside1X128, feeGrowthInside0LastX128, feeGrowthInside1LastX128, liquidity
42+
feeGrowthInside0X128, feeGrowthInside1X128, feeGrowthInside0LastX128, feeGrowthInside1LastX128, liquidity
4343
);
4444
}
4545

0 commit comments

Comments
 (0)