Skip to content

Commit a80bfe9

Browse files
authored
fix: ejector owner (#326)
1 parent 0045229 commit a80bfe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EjectionManager.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ contract EjectionManager is IEjectionManager, OwnableUpgradeable{
7474
uint32 ejectedOperators;
7575

7676
bool ratelimitHit;
77-
if(amountEjectable > 0){
77+
if(amountEjectable > 0 || msg.sender == owner()){
7878
for(uint8 j = 0; j < _operatorIds[i].length; ++j) {
7979
uint256 operatorStake = stakeRegistry.getCurrentStake(_operatorIds[i][j], quorumNumber);
8080

0 commit comments

Comments
 (0)