You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../governance/extensions/GovernorPreventLateQuorum.sol";
|
|
import "../governance/extensions/GovernorSettings.sol";
|
|
import "../governance/extensions/GovernorCountingSimple.sol";
|
|
import "../governance/extensions/GovernorVotes.sol";
|
|
|
|
contract GovernorPreventLateQuorumMock is
|
|
GovernorSettings,
|
|
GovernorVotes,
|
|
GovernorCountingSimple,
|
|
GovernorPreventLateQuorum
|
|
{
|
|
uint256 private _quorum;
|
|
|
|
constructor(
|
|
string memory name_,
|
|
IVotes token_,
|
|
uint256 votingDelay_,
|
|
uint256 votingPeriod_,
|
|
uint256 quorum_,
|
|
uint64 voteExtension_
|
|
)
|
|
Governor(name_)
|
|
GovernorSettings(votingDelay_, votingPeriod_, 0)
|
|
GovernorVotes(token_)
|
|
GovernorPreventLateQuorum(voteExtension_)
|
|
{
|
|
_quorum = quorum_;
|
|
}
|
|
|
|
function quorum(uint256) public view virtual override returns (uint256) {
|
|
return _quorum;
|
|
}
|
|
|
|
function proposalDeadline(uint256 proposalId)
|
|
public
|
|
view
|
|
virtual
|
|
override(Governor, GovernorPreventLateQuorum)
|
|
returns (uint256)
|
|
{
|
|
return super.proposalDeadline(proposalId);
|
|
}
|
|
|
|
function proposalThreshold() public view virtual override(Governor, GovernorSettings) returns (uint256) {
|
|
return super.proposalThreshold();
|
|
}
|
|
|
|
function _castVote(
|
|
uint256 proposalId,
|
|
address account,
|
|
uint8 support,
|
|
string memory reason
|
|
) internal virtual override(Governor, GovernorPreventLateQuorum) returns (uint256) {
|
|
return super._castVote(proposalId, account, support, reason);
|
|
}
|
|
}
|
|
|