File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ contract ConstantsManager is Ownable {
139139 offlinePenaltyThresholdBlocksNum = v;
140140 }
141141
142- function updateAverageUptimeEpochWindow (uint32 v ) external virtual onlyOwner {
142+ function updateAverageUptimeEpochWindow (uint32 v ) external onlyOwner {
143143 if (v < 10 ) {
144144 // needs to be long enough to allow permissible downtime for validators maintenance
145145 revert ValueTooSmall ();
@@ -157,7 +157,7 @@ contract ConstantsManager is Ownable {
157157 minAverageUptime = v;
158158 }
159159
160- function updateIssuedTokensRecipient (address v ) external virtual onlyOwner {
160+ function updateIssuedTokensRecipient (address v ) external onlyOwner {
161161 issuedTokensRecipient = v;
162162 }
163163}
You can’t perform that action at this time.
0 commit comments