Co-authored-by: Ernesto García <ernestognw@gmail.com> Co-authored-by: Francisco <fg@frang.io>
14 lines
511 B
Solidity
14 lines
511 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
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();
|
|
}
|
|
}
|