Skip to content

Commit

Permalink
Merge pull request #97 from 1Hive/update-radspec
Browse files Browse the repository at this point in the history
Update doc strings
  • Loading branch information
fabriziovigevani committed May 29, 2020
2 parents 0dc3dee + 1fa1120 commit f88ca7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/TimeLock.sol
Expand Up @@ -75,7 +75,7 @@ contract TimeLock is AragonApp, IForwarder, IForwarderFee {
}

/**
* @notice Change lock duration to `_lockDuration`
* @notice Change lock duration to `@transformTime(_lockDuration)`
* @param _lockDuration The new lock duration
*/
function changeLockDuration(uint256 _lockDuration) external auth(CHANGE_DURATION_ROLE) {
Expand All @@ -84,7 +84,7 @@ contract TimeLock is AragonApp, IForwarder, IForwarderFee {
}

/**
* @notice Change lock amount to `_lockAmount`
* @notice Change lock amount to `@tokenAmount(self.token(): address, _lockAmount, true)`
* @param _lockAmount The new lock amount
*/
function changeLockAmount(uint256 _lockAmount) external auth(CHANGE_AMOUNT_ROLE) {
Expand All @@ -93,7 +93,7 @@ contract TimeLock is AragonApp, IForwarder, IForwarderFee {
}

/**
* @notice Change spam penalty factor to `_spamPenaltyFactor`
* @notice Change spam penalty factor to `@formatPct(_spamPenaltyFactor)`
* @param _spamPenaltyFactor The new spam penalty factor
*/
function changeSpamPenaltyFactor(uint256 _spamPenaltyFactor) external auth(CHANGE_SPAM_PENALTY_ROLE) {
Expand Down

0 comments on commit f88ca7c

Please sign in to comment.