We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e96dbf1 commit 497a50aCopy full SHA for 497a50a
src/RegistryCoordinator.sol
@@ -237,8 +237,9 @@ contract RegistryCoordinator is RegistryCoordinatorStorage {
237
// in the core EigenLayer contract AllocationManager but not have the deregistration
238
// callback succeed here in `deregisterOperator` due to out of gas errors. If that is the case,
239
// we need to deregister the operator from the OperatorSet in this contract
240
- bool shouldDeregister = doesNotMeetStakeThreshold[j] || (!registeredInCore && !isM2Quorum);
241
-
+ bool shouldDeregister =
+ doesNotMeetStakeThreshold[j] || (!registeredInCore && !isM2Quorum);
242
+
243
if (shouldDeregister) {
244
_deregisterOperator({
245
operator: operators[j],
0 commit comments