Skip to content

Commit

Permalink
Unmask id variable (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmcmichael authored Nov 8, 2023
1 parent ddb0855 commit d343cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PositionManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ contract PositionManager is PermitERC721, IPositionManager, ReentrancyGuard {
mapping(uint256 tokenId => TokenInfo) internal positionTokens;

/// @dev Id of the next token that will be minted. Skips `0`.
uint176 private _nextId = 1;
uint256 private _nextId = 1;

/******************/
/*** Immutables ***/
Expand Down Expand Up @@ -307,7 +307,7 @@ contract PositionManager is PermitERC721, IPositionManager, ReentrancyGuard {
// ensure bucketDeposit accounts for accrued interest
IPool(pool_).updateInterest();

// retrieve info of bucket from which liquidity is moved
// retrieve info of bucket from which liquidity is moved
(
vars.bucketLP,
vars.bucketCollateral,
Expand Down

0 comments on commit d343cc9

Please sign in to comment.