diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-04-27 00:33:31 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-04-27 02:11:54 +0800 |
commit | e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5 (patch) | |
tree | 42686b75d9a2679de963321851c890012bdb5a1e /packages/contracts/src | |
parent | 599d34f1c08c3b41817c8cfe3f4e1b847cda072b (diff) | |
download | dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar.gz dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar.bz2 dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar.lz dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar.xz dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.tar.zst dexon-sol-tools-e4f8ea2f7c5ef504e1e0ec214ad34919a285e2d5.zip |
Move TokenRegistry to 'previous' directory
Diffstat (limited to 'packages/contracts/src')
-rw-r--r-- | packages/contracts/src/contracts/previous/TokenRegistry/ITokenRegistery.sol (renamed from packages/contracts/src/contracts/current/protocol/TokenRegistry/ITokenRegistery.sol) | 2 | ||||
-rw-r--r-- | packages/contracts/src/contracts/previous/TokenRegistry/TokenRegistry.sol (renamed from packages/contracts/src/contracts/current/protocol/TokenRegistry/TokenRegistry.sol) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/TokenRegistry/ITokenRegistery.sol b/packages/contracts/src/contracts/previous/TokenRegistry/ITokenRegistery.sol index c140a5f24..b8bdaf3b9 100644 --- a/packages/contracts/src/contracts/current/protocol/TokenRegistry/ITokenRegistery.sol +++ b/packages/contracts/src/contracts/previous/TokenRegistry/ITokenRegistery.sol @@ -18,7 +18,7 @@ pragma solidity ^0.4.21; -import { IOwnable_v1 as IOwnable } from "../../../previous/Ownable/IOwnable_v1.sol"; +import { IOwnable_v1 as IOwnable } from "../Ownable/IOwnable_v1.sol"; /// @title Token Registry - Stores metadata associated with ERC20 tokens. See ERC22 https://github.com/ethereum/EIPs/issues/22 /// @author Amir Bandeali - <amir@0xProject.com>, Will Warren - <will@0xProject.com> diff --git a/packages/contracts/src/contracts/current/protocol/TokenRegistry/TokenRegistry.sol b/packages/contracts/src/contracts/previous/TokenRegistry/TokenRegistry.sol index ede7c8c93..7417a10a3 100644 --- a/packages/contracts/src/contracts/current/protocol/TokenRegistry/TokenRegistry.sol +++ b/packages/contracts/src/contracts/previous/TokenRegistry/TokenRegistry.sol @@ -18,7 +18,7 @@ pragma solidity ^0.4.11; -import { Ownable_v1 as Ownable } from "../../../previous/Ownable/Ownable_v1.sol"; +import { Ownable_v1 as Ownable } from "../Ownable/Ownable_v1.sol"; /// @title Token Registry - Stores metadata associated with ERC20 tokens. See ERC22 https://github.com/ethereum/EIPs/issues/22 /// @author Amir Bandeali - <amir@0xProject.com>, Will Warren - <will@0xProject.com> |