Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
soloseng committed Oct 15, 2024
1 parent c67c70b commit 0fb94bc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/protocol/contracts-0.8/common/EpochManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,12 @@ contract EpochManager is
/**
* @return The list of currently elected validators.
*/
function getElected() external view onlySystemAlreadyInitialized returns (address[] memory) {
function getElectedAccounts()
external
view
onlySystemAlreadyInitialized
returns (address[] memory)
{
return electedAccounts;
}

Expand Down

0 comments on commit 0fb94bc

Please sign in to comment.