From 8ba947b6fc317b634a8e19e9c493e9e8344fb332 Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt Date: Wed, 20 Mar 2019 22:05:27 -0300 Subject: [PATCH] smallfix --- contracts/democracy/proposal/ProposalInit.sol | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/contracts/democracy/proposal/ProposalInit.sol b/contracts/democracy/proposal/ProposalInit.sol index 86b9efa..588c9ba 100644 --- a/contracts/democracy/proposal/ProposalInit.sol +++ b/contracts/democracy/proposal/ProposalInit.sol @@ -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){} } \ No newline at end of file