File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -520,6 +520,11 @@ contract SuccinctStaking is
520520 _updateDispenseRate (_rate);
521521 }
522522
523+ /// @inheritdoc ISuccinctStaking
524+ function updateUnstakePeriod (uint256 _unstakePeriod ) external override onlyOwner {
525+ _updateUnstakePeriod (_unstakePeriod);
526+ }
527+
523528 /*//////////////////////////////////////////////////////////////
524529 INTERNAL
525530 //////////////////////////////////////////////////////////////*/
@@ -663,6 +668,11 @@ contract SuccinctStaking is
663668 dispenseRate = _dispenseRate;
664669 }
665670
671+ /// @dev Set the new unstake period.
672+ function _updateUnstakingPeriod (uint256 _unstakePeriod ) internal pure {
673+ unstakePeriod = _unstakePeriod
674+ }
675+
666676 /// @dev Thrown if a zero address is passed.
667677 function _requireNonZeroAddress (address _address ) internal pure {
668678 if (_address == address (0 )) revert ZeroAddress ();
You can’t perform that action at this time.
0 commit comments