diff --git a/contracts/L1/L1MantleToken.sol b/contracts/L1/L1MantleToken.sol index 16eb4a5..b6ce6f7 100644 --- a/contracts/L1/L1MantleToken.sol +++ b/contracts/L1/L1MantleToken.sol @@ -116,6 +116,7 @@ contract L1MantleToken is /// @dev Requirements: /// - The caller must be the contract owner /// - {_mintCapNumerator} must be less than or equal to {MINT_CAP_MAX_NUMERATOR} + /// @param _mintCapNumerator The new numerator of the mint cap function setMintCapNumerator(uint256 _mintCapNumerator) public onlyOwner { if (_mintCapNumerator > MINT_CAP_MAX_NUMERATOR) { revert MantleToken_MintCapNumeratorTooLarge(_mintCapNumerator, MINT_CAP_MAX_NUMERATOR); diff --git a/contracts/Migration/MantleTokenMigrator.sol b/contracts/Migration/MantleTokenMigrator.sol index 8240b8f..d80c8b9 100644 --- a/contracts/Migration/MantleTokenMigrator.sol +++ b/contracts/Migration/MantleTokenMigrator.sol @@ -22,7 +22,7 @@ contract MantleTokenMigrator { address public treasury; /// @dev The address of the owner of the contract - /// @notice The owner of the contract is initially the deployer of the contract but will be transferred + /// @notice The owner of the contract is initially the deployer of the contract but will be transferred /// to a multisig wallet immediately after deployment address public owner; @@ -225,9 +225,9 @@ contract MantleTokenMigrator { if (_treasury == address(0)) { revert MantleTokenMigrator_InvalidTreasury(_treasury); } - + emit TreasuryChanged(treasury, _treasury); - + treasury = _treasury; }