feat!: remove revokeNomination, covered by revokeDelegate - #23
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR removes the owner-only revokeNomination() API from the Execution Delegation Framework, consolidating “revoke pending nomination” behavior into revokeDelegate() and updating the interface, tests, and CLI/docs accordingly.
Changes:
- Remove
revokeNomination()(and its event/error) fromIDelegationContractandDelegationContract. - Make
revokeDelegate()always clear any pending delegate state and emit onlyDelegateRevoked. - Update unit tests and CLI/docs to reflect the removed command/API surface.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| test/unit/DelegationContract.t.sol | Removes revokeNomination tests and updates revokeDelegate event expectations/log assertions. |
| src/interfaces/IDelegationContract.sol | Removes revokeNomination, NominationRevoked, and NoPendingDelegate; updates natspec accordingly. |
| src/DelegationContract.sol | Deletes revokeNomination implementation and makes revokeDelegate unconditionally clear pending state. |
| docs/usage.md | Removes revoke-nomination command references from the usage table and local testing note. |
| docs/development.md | Removes revoke-nomination references from operational notes and the CLI command reference table. |
| commands.just | Removes revoke-nomination / revoke-nomination-live recipes. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
F4ever
approved these changes
Aug 10, 2026
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.
Description
Removes the owner-only revokeNomination() function. revokeDelegate() already clears both the current and the pending delegate, so a separate nomination-only revoke is not needed. For the remaining edge cases the owner can terminate() the contract.
Changes:
Note: this is a breaking interface change - type(IDelegationContract).interfaceId changes, and the NominationRevoked event is no longer emitted.
Related Issue/Task
How Has This Been Tested?
Checklist