-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Reject proposals with duplicate actions in GovernorTimelockCompound #6457
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gabrielrondon
wants to merge
3
commits into
OpenZeppelin:master
Choose a base branch
from
gabrielrondon:fix/6431-duplicate-actions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
1a862e7
fix(governance): reject proposals with duplicate actions in GovernorT…
gabrielrondon 8caad48
fix(governance): validate array lengths before duplicate action check
gabrielrondon 9966ae3
test(governance): add coverage for GovernorTimelockCompound _propose …
gabrielrondon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| 'openzeppelin-solidity': minor | ||
| --- | ||
|
|
||
| `GovernorTimelockCompound`: Reject proposals containing duplicate actions (same target, value, and calldata) at proposal creation time with a new `GovernorDuplicateProposalAction` error, rather than failing later during queueing. |
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Preserve canonical proposal-length validation before duplicate scan.
At Line 74, the nested loop indexes
values[i]/calldatas[i]usingtargets.length. With malformed inputs, this can panic (out-of-bounds) before reachingGovernor._propose’sGovernorInvalidProposalLengthrevert.Proposed fix
function _propose( address[] memory targets, uint256[] memory values, bytes[] memory calldatas, string memory description, address proposer ) internal virtual override returns (uint256) { + if (targets.length != values.length || targets.length != calldatas.length || targets.length == 0) { + revert GovernorInvalidProposalLength(targets.length, calldatas.length, values.length); + } + for (uint256 i = 1; i < targets.length; ++i) { for (uint256 j = 0; j < i; ++j) { if ( targets[i] == targets[j] && values[i] == values[j] && keccak256(calldatas[i]) == keccak256(calldatas[j]) ) { revert GovernorDuplicateProposalAction(i); } } } return super._propose(targets, values, calldatas, description, proposer); }🤖 Prompt for AI Agents