Skip to content

Commit 3e9314d

Browse files
author
Michael de Hoog
authored
Allow reinitialization of the BalanceTracker (#88)
1 parent e917a0b commit 3e9314d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/revenue-share/BalanceTracker.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ contract BalanceTracker is ReentrancyGuardUpgradeable {
107107
function initialize(
108108
address payable[] memory _systemAddresses,
109109
uint256[] memory _targetBalances
110-
) external initializer {
110+
) external reinitializer(2) {
111111
uint256 systemAddresesLength = _systemAddresses.length;
112112
require(systemAddresesLength > 0,
113113
"BalanceTracker: systemAddresses cannot have a length of zero");

0 commit comments

Comments
 (0)