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