Skip to content

Commit 395cb5a

Browse files
committed
Remove unnecessary virtual methods
1 parent d6467ca commit 395cb5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/sfc/ConstantsManager.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)