Remove unused LibOrder inheritance from MixinBalanceThresholdFilterCore from /contracts/extensions.

This commit is contained in:
Lawrence Forman 2019-03-22 16:14:12 -04:00 committed by Amir Bandeali
parent 74a9a13564
commit 92fe720ac3
2 changed files with 5 additions and 7 deletions

View File

@ -53,7 +53,7 @@ contract LibEIP712Domain is
EIP712_EXCHANGE_DOMAIN_HASH = hashEIP712Domain(
EIP712_EXCHANGE_DOMAIN_NAME,
EIP712_EXCHANGE_DOMAIN_VERSION,
address(this)
address(EXCHANGE)
);
}

View File

@ -19,7 +19,6 @@
pragma solidity ^0.5.5;
import "@0x/contracts-exchange-libs/contracts/src/LibExchangeSelectors.sol";
import "@0x/contracts-exchange-libs/contracts/src/LibOrder.sol";
import "./mixins/MBalanceThresholdFilterCore.sol";
import "./MixinExchangeCalldata.sol";
@ -27,7 +26,6 @@ import "./MixinExchangeCalldata.sol";
contract MixinBalanceThresholdFilterCore is
MBalanceThresholdFilterCore,
MixinExchangeCalldata,
LibOrder,
LibExchangeSelectors
{