GovernorMock.sol 657 B

1234567891011121314
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.8.20;
  3. import {Governor} from "../../governance/Governor.sol";
  4. import {GovernorSettings} from "../../governance/extensions/GovernorSettings.sol";
  5. import {GovernorCountingSimple} from "../../governance/extensions/GovernorCountingSimple.sol";
  6. import {GovernorVotesQuorumFraction} from "../../governance/extensions/GovernorVotesQuorumFraction.sol";
  7. abstract contract GovernorMock is GovernorSettings, GovernorVotesQuorumFraction, GovernorCountingSimple {
  8. function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {
  9. return super.proposalThreshold();
  10. }
  11. }