diff --git a/contracts/treasury/GovernorCountingOverridable.sol b/contracts/treasury/GovernorCountingOverridable.sol index 31dfa388..c3743cee 100644 --- a/contracts/treasury/GovernorCountingOverridable.sol +++ b/contracts/treasury/GovernorCountingOverridable.sol @@ -53,15 +53,15 @@ abstract contract GovernorCountingOverridable is Initializable, GovernorUpgradea mapping(address => ProposalVoterState) voters; } + // Maps proposal IDs to their corresponding vote tallies. + mapping(uint256 => ProposalTally) private _proposalTallies; + /** * @notice The required percentage of "for" votes in relation to the total opinionated votes (for and against) for * a proposal to succeed. Represented as a MathUtils percentage value (e.g. 6 decimal places). */ uint256 public quota; - // Maps proposal IDs to their corresponding vote tallies. - mapping(uint256 => ProposalTally) private _proposalTallies; - function __GovernorCountingOverridable_init(uint256 _quota) internal onlyInitializing { __GovernorCountingOverridable_init_unchained(_quota); }