diff --git a/packages/contracts-bedrock/src/L2/L1Withdrawer.sol b/packages/contracts-bedrock/src/L2/L1Withdrawer.sol index bbaf18e4638..c77c9be2c0d 100644 --- a/packages/contracts-bedrock/src/L2/L1Withdrawer.sol +++ b/packages/contracts-bedrock/src/L2/L1Withdrawer.sol @@ -58,7 +58,7 @@ contract L1Withdrawer is ISemver { /// @param _minWithdrawalAmount The minimum amount of ETH required to trigger a withdrawal. /// @param _recipient The L1 address that will receive withdrawals. /// @param _withdrawalGasLimit The gas limit for the L1 withdrawal transaction. - /// @dev If target on L1 is `FeesDepositor`, the gas limit should be above 800k gas. + /// @dev If target on L1 is `FeesDepositor`, the gas limit should be at or above 800k gas. constructor(uint256 _minWithdrawalAmount, address _recipient, uint32 _withdrawalGasLimit) { minWithdrawalAmount = _minWithdrawalAmount; recipient = _recipient; @@ -105,7 +105,7 @@ contract L1Withdrawer is ISemver { /// @notice Updates the withdrawal gas limit. Only callable by the ProxyAdmin owner. /// @param _newWithdrawalGasLimit The new withdrawal gas limit. - /// @dev If target on L1 is `FeesDepositor`, the gas limit should be above 800k gas. + /// @dev If target on L1 is `FeesDepositor`, the gas limit should be at or above 800k gas. function setWithdrawalGasLimit(uint32 _newWithdrawalGasLimit) external { if (msg.sender != IProxyAdmin(Predeploys.PROXY_ADMIN).owner()) { revert L1Withdrawer_OnlyProxyAdminOwner();