Skip to content

Commit 64c0460

Browse files
committed
update comments
1 parent 970af37 commit 64c0460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/drop/DropERC20.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,13 +463,13 @@ contract DropERC20 is
463463
emit WalletClaimCountUpdated(_claimer, _count);
464464
}
465465

466-
/// @dev Lets a contract admin set a maximum number of tokens that can be claimed by any wallet.
466+
/// @dev Set a maximum number of tokens that can be claimed by any wallet. Must be parsed to 18 decimals when setting, by adding 18 zeros after the desired value.
467467
function setMaxWalletClaimCount(uint256 _count) external onlyRole(DEFAULT_ADMIN_ROLE) {
468468
maxWalletClaimCount = _count;
469469
emit MaxWalletClaimCountUpdated(_count);
470470
}
471471

472-
/// @dev Lets a contract admin set the global maximum supply of tokens.
472+
/// @dev Set global maximum supply. Must be parsed to 18 decimals when setting, by adding 18 zeros after the desired value.
473473
function setMaxTotalSupply(uint256 _maxTotalSupply) external onlyRole(DEFAULT_ADMIN_ROLE) {
474474
maxTotalSupply = _maxTotalSupply;
475475
emit MaxTotalSupplyUpdated(_maxTotalSupply);

0 commit comments

Comments
 (0)