Skip to content

Commit

Permalink
Revert "[devnet-compat] treasury: Invert order of quota field"
Browse files Browse the repository at this point in the history
This reverts commit 299ff5b.
  • Loading branch information
victorges committed Oct 11, 2023
1 parent 4df487a commit cc454dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/treasury/GovernorCountingOverridable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit cc454dd

Please sign in to comment.