diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-05-17 07:16:19 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-05-19 08:01:06 +0800 |
commit | ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff (patch) | |
tree | b18006370c5976faf538f2ab77c36cc380ccc796 | |
parent | c79f3501cd412bc6dfe294c3c9a5164055bab548 (diff) | |
download | dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.gz dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.bz2 dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.lz dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.xz dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.tar.zst dexon-sol-tools-ce177ae6f6fd5a4f23a85c97a44f2c1ca020ddff.zip |
IExchange inherits from all other interfaces (in the same order as Exchange inherits Mixins)
-rw-r--r-- | packages/contracts/src/contracts/current/protocol/Exchange/interfaces/IExchange.sol | 16 |
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 {} |