Skip to content

Commit b8dcc0a

Browse files
fix: rename X218 for X128 (#356)
Co-authored-by: Sara Reynolds <[email protected]>
1 parent 24ae83f commit b8dcc0a

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)