contracts/exchange-libs/contracts/test/TestLibs now inherits from LibEIP712ExchangeDomain rather than LibEIP712

This commit is contained in:
Lawrence Forman
2019-03-30 14:46:29 -04:00
committed by Amir Bandeali
parent 2b5cd02bd9
commit 53b1037a33

View File

@@ -19,7 +19,7 @@
pragma solidity ^0.5.5;
pragma experimental ABIEncoderV2;
import "../src/LibEIP712.sol";
import "../src/LibEIP712ExchangeDomain.sol";
import "../src/LibMath.sol";
import "../src/LibOrder.sol";
import "../src/LibFillResults.sol";
@@ -28,7 +28,7 @@ import "../src/LibAbiEncoder.sol";
// solhint-disable no-empty-blocks
contract TestLibs is
LibEIP712,
LibEIP712ExchangeDomain,
LibMath,
LibOrder,
LibFillResults,