GovernorMock.sol 512 B

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