Files
openzeppelin-contracts/contracts/mocks/governance/GovernorMock.sol
2023-05-29 21:37:37 +02:00

14 lines
512 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "../../governance/extensions/GovernorSettings.sol";
import "../../governance/extensions/GovernorCountingSimple.sol";
import "../../governance/extensions/GovernorVotesQuorumFraction.sol";
abstract contract GovernorMock is GovernorSettings, GovernorVotesQuorumFraction, GovernorCountingSimple {
function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {
return super.proposalThreshold();
}
}