topic-democracy/contracts/democracy/TrustNetworkInterface.sol
Ricardo Guilherme Schmidt 3c40812a52 fix compile errors
2018-03-17 13:50:33 -03:00

10 lines
303 B
Solidity

pragma solidity ^0.4.17;
import "./DelegationProxyInterface.sol";
contract TrustNetworkInterface {
function addTopic(bytes32 topicId, bytes32 parentTopic) public;
function getTopic(bytes32 _topicId) public constant returns (DelegationProxyInterface vote, DelegationProxyInterface veto);
}