Skip to content

Commit

Permalink
refactor: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
0xClandestine committed Jan 27, 2025
1 parent e0859fc commit 56a1466
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EjectionManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ contract EjectionManager is OwnableUpgradeable, EjectionManagerStorage {

function initialize(
address _owner,
address[] memory ejectors,
address[] memory _ejectors,
QuorumEjectionParams[] memory _quorumEjectionParams
) external initializer {
_transferOwnership(_owner);
for (uint8 i = 0; i < ejectors.length; i++) {
_setEjector(ejectors[i], true);
for (uint8 i = 0; i < _ejectors.length; i++) {
_setEjector(_ejectors[i], true);
}
for (uint8 i = 0; i < _quorumEjectionParams.length; i++) {
_setQuorumEjectionParams(i, _quorumEjectionParams[i]);
Expand Down

0 comments on commit 56a1466

Please sign in to comment.