aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-05-17 07:16:19 +0800
committerGreg Hysen <greg.hysen@gmail.com>2018-05-19 08:01:06 +0800
commitce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff (patch)
treeb18006370c5976faf538f2ab77c36cc380ccc796 /packages
parentc79f3501cd412bc6dfe294c3c9a5164055bab548 (diff)
downloaddexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.gz
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.bz2
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.lz
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.xz
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.zst
dexon-0x-contracts-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.zip
IExchange inherits from all other interfaces (in the same order as Exchange inherits Mixins)
Diffstat (limited to 'packages')
-rw-r--r--packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol16
1 files changed, 10 insertions, 6 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol b/packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol
index 9fba3491b..20cdfa57e 100644
--- a/packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol
+++ b/packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol
@@ -20,15 +20,19 @@ pragma solidity ^0.4.23;
pragma experimental ABIEncoderV2;
import "./IExchangeCore.sol";
-import "./ISignatureValidator.sol";
-import "./IAssetProxyDispatcher.sol";
-import "./ITransactions.sol";
-import "./IWrapperFunctions.sol";
+import "./IMatchOrders";
+import "./ISettlement";
+import "./ISignatureValidator";
+import "./ITransactions";
+import "./IAssetProxyDispatcher";
+import "./IWrapperFunctions";
contract IExchange is
- IWrapperFunctions,
IExchangeCore,
+ IMatchOrders,
+ ISettlement,
ISignatureValidator,
ITransactions,
- IAssetProxyDispatcher
+ IAssetProxyDispatcher,
+ IWrapperFunctions
{}