topic-democracy/contracts/democracy/TrustNetworkInterface.sol

10 lines
303 B
Solidity
Raw Normal View History

2018-03-17 13:50:33 -03:00
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);
}