Skip to content

Commit

Permalink
no reverts on cutting upgrade notice period
Browse files Browse the repository at this point in the history
  • Loading branch information
Barichek committed Nov 11, 2021
1 parent 1bd79f1 commit 731a3fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/contracts/AdditionalZkSync.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ contract AdditionalZkSync is Storage, Config, Events, ReentrancyGuard {
$(SECURITY_COUNCIL_MEMBERS)
];
for (uint256 id = 0; id < SECURITY_COUNCIL_MEMBERS_NUMBER; ++id) {
if (SECURITY_COUNCIL_MEMBERS[id] == addr) {
require(securityCouncilApproves[id] == false);
if (SECURITY_COUNCIL_MEMBERS[id] == addr && !securityCouncilApproves[id]) {
securityCouncilApproves[id] = true;
numberOfApprovalsFromSecurityCouncil++;

Expand Down

0 comments on commit 731a3fd

Please sign in to comment.