smallfix
This commit is contained in:
parent
0e6c159188
commit
8ba947b6fc
|
@ -20,7 +20,7 @@ contract ProposalInit is ProposalAbstract {
|
|||
uint256 _tabulationBlockDelay,
|
||||
uint256 _blockStart,
|
||||
uint256 _blockEndDelay,
|
||||
QuorumType _quorum
|
||||
Proposal.QuorumType _quorum
|
||||
)
|
||||
external
|
||||
{
|
||||
|
@ -34,6 +34,17 @@ contract ProposalInit is ProposalAbstract {
|
|||
quorum = _quorum;
|
||||
}
|
||||
|
||||
function voteSigned(bytes32) external{}
|
||||
function voteDirect(Vote) external{}
|
||||
function tabulateDirect(address ) external{}
|
||||
function tabulateSigned(Vote, uint256, bytes32[] calldata, bytes calldata) external{}
|
||||
function tabulateDelegated(address) external{}
|
||||
function precomputeDelegation(address, bool) external{}
|
||||
function finalize() external{}
|
||||
function clear() external{}
|
||||
function isApproved() external view returns (bool){}
|
||||
function isFinalized() external view returns (bool){}
|
||||
function getVoteHash(Vote) external view returns (bytes32){}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue