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.
31 lines
874 B
31 lines
874 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../governance/extensions/GovernorCountingSimple.sol";
|
|
import "../governance/extensions/GovernorVotes.sol";
|
|
|
|
contract GovernorVoteMocks is GovernorVotes, GovernorCountingSimple {
|
|
constructor(string memory name_, IVotes token_) Governor(name_) GovernorVotes(token_) {}
|
|
|
|
function quorum(uint256) public pure override returns (uint256) {
|
|
return 0;
|
|
}
|
|
|
|
function votingDelay() public pure override returns (uint256) {
|
|
return 4;
|
|
}
|
|
|
|
function votingPeriod() public pure override returns (uint256) {
|
|
return 16;
|
|
}
|
|
|
|
function cancel(
|
|
address[] memory targets,
|
|
uint256[] memory values,
|
|
bytes[] memory calldatas,
|
|
bytes32 salt
|
|
) public returns (uint256 proposalId) {
|
|
return _cancel(targets, values, calldatas, salt);
|
|
}
|
|
}
|
|
|