GovernorTimelockControlMock
Inherits: GovernorSettings, GovernorTimelockControl, GovernorVotesQuorumFraction, GovernorCountingSimple
Functions
quorum
function quorum(uint256 blockNumber) public view override(Governor, GovernorVotesQuorumFraction) returns (uint256);
state
function state(uint256 proposalId) public view override(Governor, GovernorTimelockControl) returns (ProposalState);
proposalThreshold
function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256);
proposalNeedsQueuing
function proposalNeedsQueuing(uint256 proposalId)
public
view
virtual
override(Governor, GovernorTimelockControl)
returns (bool);
_queueOperations
function _queueOperations(
uint256 proposalId,
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
bytes32 descriptionHash
) internal override(Governor, GovernorTimelockControl) returns (uint48);
_executeOperations
function _executeOperations(
uint256 proposalId,
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
bytes32 descriptionHash
) internal override(Governor, GovernorTimelockControl);
_cancel
function _cancel(address[] memory targets, uint256[] memory values, bytes[] memory calldatas, bytes32 descriptionHash)
internal
override(Governor, GovernorTimelockControl)
returns (uint256);
_executor
function _executor() internal view override(Governor, GovernorTimelockControl) returns (address);
nonGovernanceFunction
function nonGovernanceFunction() external;