mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-24 16:18:46 +00:00
smallfix
This commit is contained in:
parent
0e6c159188
commit
8ba947b6fc
@ -20,8 +20,8 @@ contract ProposalInit is ProposalAbstract {
|
||||
uint256 _tabulationBlockDelay,
|
||||
uint256 _blockStart,
|
||||
uint256 _blockEndDelay,
|
||||
QuorumType _quorum
|
||||
)
|
||||
Proposal.QuorumType _quorum
|
||||
)
|
||||
external
|
||||
{
|
||||
require(address(token) == address(0), "Already initialized");
|
||||
@ -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…
x
Reference in New Issue
Block a user