Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
soloseng committed Oct 14, 2024
1 parent f3b7a51 commit c15fc93
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/protocol/contracts-0.8/common/EpochManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,17 @@ contract EpochManager is

uint256 public firstKnownEpoch;
uint256 internal currentEpochNumber;
address[] internal electedAccounts;
address[] internal electedSigners;
address[] public electedAccounts;
// Electeds in the L1 assumed signers can not change during the epoch
// so we keep a copy
address[] public electedSigners;
address public oracleAddress;

mapping(address => uint256) public processedGroups;

EpochProcessState public epochProcessing;
mapping(uint256 => Epoch) internal epochs;
mapping(uint256 => address[]) internal electedAccountsOfEpoch;
// Electeds in the L1 assumed signers can not change during the epoch
// so we keep a copy
mapping(uint256 => address[]) internal electedSignersOfEpoch;

mapping(address => uint256) public validatorPendingPayments;

/**
Expand Down

0 comments on commit c15fc93

Please sign in to comment.