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.
53 lines
1.4 KiB
53 lines
1.4 KiB
4 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "../governance/Governor.sol";
|
||
|
import "../governance/extensions/GovernorCountingSimple.sol";
|
||
|
import "../governance/extensions/GovernorVotesQuorumFraction.sol";
|
||
|
|
||
|
contract GovernorMock is Governor, GovernorVotesQuorumFraction, GovernorCountingSimple {
|
||
|
uint256 immutable _votingDelay;
|
||
|
uint256 immutable _votingPeriod;
|
||
|
|
||
|
constructor(
|
||
|
string memory name_,
|
||
|
ERC20Votes token_,
|
||
|
uint256 votingDelay_,
|
||
|
uint256 votingPeriod_,
|
||
|
uint256 quorumNumerator_
|
||
|
) Governor(name_) GovernorVotes(token_) GovernorVotesQuorumFraction(quorumNumerator_) {
|
||
|
_votingDelay = votingDelay_;
|
||
|
_votingPeriod = votingPeriod_;
|
||
|
}
|
||
|
|
||
|
receive() external payable {}
|
||
|
|
||
|
function votingDelay() public view override returns (uint256) {
|
||
|
return _votingDelay;
|
||
|
}
|
||
|
|
||
|
function votingPeriod() public view override returns (uint256) {
|
||
|
return _votingPeriod;
|
||
|
}
|
||
|
|
||
|
function cancel(
|
||
|
address[] memory targets,
|
||
|
uint256[] memory values,
|
||
|
bytes[] memory calldatas,
|
||
|
bytes32 salt
|
||
|
) public returns (uint256 proposalId) {
|
||
|
return _cancel(targets, values, calldatas, salt);
|
||
|
}
|
||
|
|
||
|
function getVotes(address account, uint256 blockNumber)
|
||
|
public
|
||
|
view
|
||
|
virtual
|
||
|
override(Governor, GovernorVotes)
|
||
|
returns (uint256)
|
||
|
{
|
||
|
return super.getVotes(account, blockNumber);
|
||
|
}
|
||
|
}
|