Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Fix activeOwnersCount initialization in MultiSigGeneric #222

Merged
merged 3 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions contract-address.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,20 +267,20 @@
},
"multiSig": {
"charityApplications": {
"implementation": "0xE2Af564F27EE4a6721f1650f9FAa975a11Fdc50F",
"proxy": "0x4cb1E5cc57a5cEb38C0087300cFdDDE3a08B3694"
"implementation": "0xbC79912c36A0C003Bf93b164F96e1d14565e2786",
"proxy": "0xbF338a5f1030c9c3c7d729214A0299201149146C"
},
"apTeam": {
"implementation": "0xC944590c3fe90e97129ac5AF077DCFB229f3A909",
"proxy": "0xeA2B4CD932f5Cecea867D8794206c5D51A13a516"
"implementation": "0x8c6135a5b9a48A6faCF07bd9b90b73D952a588cA",
"proxy": "0x9034E5Bb0e03c985952C3506363Fe936c4A799f5"
},
"endowment": {
"emitter": {
"implementation": "0xf1bBE8aCdd30E2998D1Db8eEaACE95E86DFE7a0a",
"proxy": "0x8a87385765871bD85d96B7675A3F1Fb663146E4d"
},
"factory": "0xc4150f28a33a04B79B60560Bd4684d521edB99AE",
"implementation": "0x9Bcb8A679727f922704d50e74fCA8f053720D3AA"
"implementation": "0x0026843B609C93036aF4ED9e873Fe40fD5772283"
}
},
"registrar": {
Expand Down
2 changes: 2 additions & 0 deletions contracts/multisigs/MultiSigGeneric.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ contract MultiSigGeneric is
require(!isOwner[owners[i]] && owners[i] != address(0));
isOwner[owners[i]] = true;
}
activeOwnersCount = owners.length;

// set storage variables
approvalsRequired = _approvalsRequired;
requireExecution = _requireExecution;
Expand Down
Loading