Skip to content

Commit

Permalink
add setRewardDuration to the manager contract
Browse files Browse the repository at this point in the history
  • Loading branch information
vm06007 committed Jan 14, 2024
1 parent 4159417 commit a6eb804
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions contracts/ManagerSetup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ contract ManagerSetup is ManagerHelper {
);
}

function setRewardDuration(
uint256 _newDuration
)
external
onlyOwner
{
TIME_LOCK_FARM.setRewardDuration(
_newDuration
);
}

/**
* @dev Allows to recover ANY tokens
* from the private farm contract.
Expand Down

0 comments on commit a6eb804

Please sign in to comment.