Skip to content

Commit

Permalink
Remove mock function from Voting interface
Browse files Browse the repository at this point in the history
  • Loading branch information
bingen committed Jun 21, 2018
1 parent cff565a commit 0e28030
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracts/interfaces/IVoting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pragma solidity ^0.4.18;

interface IVoting {
function newVote(bytes _executionScript, string _metadata) external returns (uint256 voteId);
function setVoteResult(uint256 voteId, bool result, uint256 winningStake, uint256 totalStake) public;
// TODO: canExecute or isClosed??
function isClosed(uint256 voteId) view public returns (bool);
function getVoteResult(uint256 voteId) view public returns (bool, uint256, uint256);
Expand Down

0 comments on commit 0e28030

Please sign in to comment.