aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/test/fixtures/contracts/Exchange.sol
diff options
context:
space:
mode:
Diffstat (limited to 'packages/deployer/test/fixtures/contracts/Exchange.sol')
-rw-r--r--packages/deployer/test/fixtures/contracts/Exchange.sol5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/deployer/test/fixtures/contracts/Exchange.sol b/packages/deployer/test/fixtures/contracts/Exchange.sol
index 1b6819700..1249d21ed 100644
--- a/packages/deployer/test/fixtures/contracts/Exchange.sol
+++ b/packages/deployer/test/fixtures/contracts/Exchange.sol
@@ -16,10 +16,11 @@
*/
-pragma solidity 0.4.14;
+pragma solidity ^0.4.14;
+
+import {ERC20 as Token} from "zeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "./TokenTransferProxy.sol";
-import "./base/Token.sol";
import "./base/SafeMath.sol";
/// @title Exchange - Facilitates exchange of ERC20 tokens.