This commit is contained in:
Ricardo Guilherme Schmidt 2018-03-28 18:37:17 -03:00
parent 587df6fe40
commit f6b2174694
1 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ pragma solidity ^0.4.21;
import "../common/Controlled.sol";
import "./TrustNetworkInterface.sol";
import "./DelegationProxyInterface.sol";
import "./DelegationProxyFactory.sol";
@ -16,8 +17,8 @@ contract TrustNetwork is TrustNetworkInterface, Controlled {
DelegationProxyFactory delegationFactory;
struct Topic {
DelegationProxy voteDelegation;
DelegationProxy vetoDelegation;
DelegationProxyInterface voteDelegation;
DelegationProxyInterface vetoDelegation;
}
function TrustNetwork(address _delegationFactory) public {