Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
schmackofant committed Dec 18, 2023
1 parent b1f3e05 commit ba2f125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/TokenVesting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ contract TokenVesting is IERC20Metadata, Ownable, ReentrancyGuard, Pausable, Acc

if (_amount == 0) revert InvalidAmount();

// _slicePeriodSeconds should be at least 60 seconds
// _slicePeriodSeconds should be 60 seconds maximum
if (_slicePeriodSeconds == 0 || _slicePeriodSeconds > 60) revert InvalidSlicePeriod();

// _duration must be longer than _cliff
Expand Down

0 comments on commit ba2f125

Please sign in to comment.