Skip to content

Commit

Permalink
fix: remove gap
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Jul 19, 2024
1 parent 7af804e commit f879d82
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ contract UpgradeableBurnMintTokenPool is Initializable, UpgradeableBurnMintToken
/// @dev Can be address(0) if none is configured.
address internal s_rateLimitAdmin;

// Reserved storage space to allow for layout changes in the future.
uint256[50] private __gap;

/// @dev Constructor
/// @param token The bridgeable token that is managed by this pool.
/// @param armProxy The address of the arm proxy
Expand Down Expand Up @@ -91,4 +88,4 @@ contract UpgradeableBurnMintTokenPool is Initializable, UpgradeableBurnMintToken
function _burn(uint256 amount) internal virtual override {
IBurnMintERC20(address(i_token)).burn(amount);
}
}
}

0 comments on commit f879d82

Please sign in to comment.