Skip to content

Commit 0e15165

Browse files
committed
SSV Network upgrade contract
1 parent 47bf9b9 commit 0e15165

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// SPDX-License-Identifier: GPL-3.0-or-later
2+
pragma solidity 0.8.24;
3+
4+
import "../../../SSVNetwork.sol";
5+
6+
contract SSVNetworkUpgradeValidatorsPerOperator is SSVNetwork {
7+
function initializev2(uint32 validatorsPerOperatorLimit_) external reinitializer(_getInitializedVersion() + 1) {
8+
SSVStorageProtocol.load().validatorsPerOperatorLimit = validatorsPerOperatorLimit_;
9+
}
10+
}

0 commit comments

Comments
 (0)