Add missing docstrings (#5311)
Co-authored-by: cairo <cairoeth@protonmail.com> Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
This commit is contained in:
@ -35,7 +35,10 @@ abstract contract GovernorCountingOverridable is GovernorVotes {
|
||||
mapping(address voter => VoteReceipt) voteReceipt;
|
||||
}
|
||||
|
||||
event VoteReduced(address indexed voter, uint256 proposalId, uint8 support, uint256 weight);
|
||||
/// @dev The vote was reduced by `weight` after an override over the `delegate` by the original token holder
|
||||
event VoteReduced(address indexed delegate, uint256 proposalId, uint8 support, uint256 weight);
|
||||
|
||||
/// @dev A delegated vote on `proposalId` was overridden by `weight`
|
||||
event OverrideVoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 weight, string reason);
|
||||
|
||||
error GovernorAlreadyOverridenVote(address account);
|
||||
|
||||
Reference in New Issue
Block a user