Skip to content

Commit

Permalink
feat: cliff duration
Browse files Browse the repository at this point in the history
  • Loading branch information
sogipec committed Dec 5, 2024
1 parent 4f5bb3c commit 104744e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ contract PufferPointTokenWrapper is UUPSHelper, ERC20Upgradeable {
}

function setCliffDuration(uint32 _newCliffDuration) external onlyGuardian {
if (_newCliffDuration < cliffDuration && _newCliffDuration != 0) revert InvalidParam();
cliffDuration = _newCliffDuration;
}

Expand Down

0 comments on commit 104744e

Please sign in to comment.