fix: assert defaultOperatorSplitBips does not exceed 100%#1731
Merged
0xClandestine merged 1 commit intomainfrom Feb 23, 2026
Merged
fix: assert defaultOperatorSplitBips does not exceed 100%#17310xClandestine merged 1 commit intomainfrom
defaultOperatorSplitBips does not exceed 100%#17310xClandestine merged 1 commit intomainfrom
Conversation
|
Claude encountered an error after 1m 29s —— View job Code Review Complete ✅Todo List:
SummaryThis is a solid fix that addresses a missing validation in Review Findings✅ Correctness
✅ Security
✅ Test Coverage
✅ Integration
RecommendationApprove and merge. The PR correctly addresses the missing validation with appropriate test coverage and no regressions. |
serichoi65
approved these changes
Feb 23, 2026
There was a problem hiding this comment.
Verification Results
- Group ID: e2b9e5d2-336b-4275-ae36-699d04f5ae91
- Commit: 8ed5b4a
| Job | Result | VERIFIED | Link |
|---|---|---|---|
| strategies/StrategyBase.conf | ✅ | 2 | Link |
| pods/EigenPodManagerRules.conf | ✅ | 9 | Link |
| permissions/Pausable.conf | ✅ | 2 | Link |
| multichain/OperatorTableUpdater.conf | ✅ | 11 | Link |
| multichain/KeyRegistrar.conf | ✅ | 13 | Link |
| multichain/ECDSACertificateVerifier.conf | ✅ | 7 | Link |
| multichain/CrossChainRegistry.conf | ✅ | 21 | Link |
| multichain/BN254CertificateVerifier.conf | ✅ | 6 | Link |
| core/StrategyManager.conf | ✅ | 6 | Link |
| core/DelegationManagerValidState.conf | ✅ | 11 | Link |
| core/DelegationManager.conf | ✅ | 9 | Link |
| core/AllocationManagerValidState.conf (Rule(s): sumOfPendingDiffCurrentMagnitudeRespectsWAD) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): SetInRegisteredIFFStatusIsTrue) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): registeredSetsInvariant) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): operatorSetsInvariant) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): noZeroKeyInDealocationQ) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): noPositivePendingDiffInDeallocationQ) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): negativePendingDiffAtMostCurrentMagnitude) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeMonotonicallyDecreasing) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeLeqWAD) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeHistoryPastLengthNullified) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeHistoryKeysMonotonicInc) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeHistoryKeysLessThanCurrentBlock) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeGEencumberedMagnitude) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): maxMagnitudeGECurrentMagnitude) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): EndGreaterThenBegin) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): encumberedMagnitudeLeqWAD) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): encumberedMagnitudeEqSumOfCurrentMagnitudesAndPositivePending) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): effectBlockZeroHasNoPendingDiff) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): deallocationQueueEffectBlocLessThanCurrBlockNumberPlushDelayPlusOne) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): deallocationQueueEffectBlockAscendingOrder) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): deallocationQueueDataUniqueness) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): deallocationQueueDataOutOfBoundsAreNullified) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): currentMagnitudeLeqWAD) | ✅ | 2 | Link |
| core/AllocationManagerValidState.conf (Rule(s): allocatedSetsInvariant) | ✅ | 2 | Link |
| core/AllocationManagerSanity.conf | ✅ | 2 | Link |
| core/AllocationManagerOverslashing.conf | ✅ | 4 | Link |
| core/AllocationManager.conf | ✅ | 4 | Link |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation:
The setter
_setDefaultOperatorSplitwas missing a check asserting input does not exceed max.Modifications:
Added one line check to the function.
Result:
The value
defaultOperatorSplitBipscannot exceed 100%.