Skip to content

Commit

Permalink
update comments (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
afkbyte committed Jun 14, 2023
1 parent 51ea647 commit 293e390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/L1/L1MantleToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ contract L1MantleToken is
/// - Only allows minting below an inflation cap at a specified time interval
/// - The max mint amount is computed as follows:
/// - maxMintAmount = (mintCapNumerator * totalSupply()) / MINT_CAP_DENOMINATOR
/// - The specified time interval at which mints can occur is initially set to 1 year
/// - The specified time interval at which mints can occur is 1 year (365 days)
/// - the parameter {amount} must be less than or equal to {maxMintAmount} as computed above
/// - the {blockTimestamp} of the block in which this function is called must be greater than or equal to {nextMint}
/// @param _recipient The address to mint tokens to
Expand All @@ -112,7 +112,7 @@ contract L1MantleToken is
}

/// @notice Allows the owner to set the mintCapNumerator
/// @dev emits a {MintCapNumeratorSet} event
/// @dev emits a {MintCapNumeratorChanged} event
/// @dev Requirements:
/// - The caller must be the contract owner
/// - parameter {_mintCapNumerator} must be less than or equal to {MINT_CAP_MAX_NUMERATOR}
Expand Down

0 comments on commit 293e390

Please sign in to comment.