From f6b2174694494c8a38e0e50dfa9c4da9ff18778d Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt <3esmit@gmail.com> Date: Wed, 28 Mar 2018 18:37:17 -0300 Subject: [PATCH] fix typo --- contracts/democracy/TrustNetwork.sol | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contracts/democracy/TrustNetwork.sol b/contracts/democracy/TrustNetwork.sol index ca1b420..8b73ca0 100644 --- a/contracts/democracy/TrustNetwork.sol +++ b/contracts/democracy/TrustNetwork.sol @@ -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 {