File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ contract RegistryCoordinator is RegistryCoordinatorStorage {
6363 ) external onlyWhenNotPaused (PAUSED_REGISTER_OPERATOR) {
6464 require (! isM2QuorumRegistrationDisabled, M2QuorumRegistrationIsDisabled ());
6565 require (
66- quorumNumbers.orderedBytesArrayToBitmap ().isSubsetOf (m2QuorumBitmap),
66+ ! operatorSetsEnabled || quorumNumbers.orderedBytesArrayToBitmap ().isSubsetOf (m2QuorumBitmap),
6767 OnlyM2QuorumsAllowed ()
6868 );
6969
@@ -97,7 +97,7 @@ contract RegistryCoordinator is RegistryCoordinatorStorage {
9797 ) external onlyWhenNotPaused (PAUSED_REGISTER_OPERATOR) {
9898 require (! isM2QuorumRegistrationDisabled, M2QuorumRegistrationIsDisabled ());
9999 require (
100- quorumNumbers.orderedBytesArrayToBitmap ().isSubsetOf (m2QuorumBitmap),
100+ ! operatorSetsEnabled || quorumNumbers.orderedBytesArrayToBitmap ().isSubsetOf (m2QuorumBitmap),
101101 OnlyM2QuorumsAllowed ()
102102 );
103103
You can’t perform that action at this time.
0 commit comments