Move ERC20 contracts to ERC20 custom folder (#701)
* Move ERC20 contracts to ERC20 custom folder * Fix linter warnings for ERC20 contractspull/690/head^2
parent
1eea95f9ac
commit
c5d66183ab
@ -1,8 +1,8 @@ |
||||
pragma solidity ^0.4.18; |
||||
|
||||
|
||||
import "./ERC20/ERC20Basic.sol"; |
||||
import "../math/SafeMath.sol"; |
||||
import "./ERC20Basic.sol"; |
||||
import "../../math/SafeMath.sol"; |
||||
|
||||
|
||||
/** |
@ -1,12 +1,11 @@ |
||||
pragma solidity ^0.4.18; |
||||
|
||||
import "./StandardToken.sol"; |
||||
import "../lifecycle/Pausable.sol"; |
||||
import "../../lifecycle/Pausable.sol"; |
||||
|
||||
|
||||
/** |
||||
* @title Pausable token |
||||
* |
||||
* @dev StandardToken modified with pausable transfers. |
||||
**/ |
||||
contract PausableToken is StandardToken, Pausable { |
@ -1,8 +1,7 @@ |
||||
pragma solidity ^0.4.18; |
||||
|
||||
|
||||
import "./BasicToken.sol"; |
||||
import "./ERC20/ERC20.sol"; |
||||
import "./ERC20.sol"; |
||||
|
||||
|
||||
/** |
@ -1,6 +1,6 @@ |
||||
pragma solidity ^0.4.18; |
||||
|
||||
import "./ERC20/SafeERC20.sol"; |
||||
import "./SafeERC20.sol"; |
||||
|
||||
|
||||
/** |
@ -1,9 +1,9 @@ |
||||
pragma solidity ^0.4.18; |
||||
|
||||
import "./ERC20/ERC20Basic.sol"; |
||||
import "./ERC20/SafeERC20.sol"; |
||||
import "../ownership/Ownable.sol"; |
||||
import "../math/SafeMath.sol"; |
||||
import "./ERC20Basic.sol"; |
||||
import "./SafeERC20.sol"; |
||||
import "../../ownership/Ownable.sol"; |
||||
import "../../math/SafeMath.sol"; |
||||
|
||||
|
||||
/** |
Loading…
Reference in new issue