Removed import files

This commit is contained in:
Thrilok Kumar 2020-08-04 15:40:04 +05:30
parent 37efb0c69c
commit b128ee663c

View File

@ -1,18 +1,12 @@
pragma solidity ^0.6.0; pragma solidity ^0.6.0;
// import files from common directory
import { TokenInterface , MemoryInterface, EventInterface} from "../common/interfaces.sol";
import { Stores } from "../common/stores.sol";
import { DSMath } from "../common/math.sol";
interface CHIInterface { interface CHIInterface {
function mint(uint256 value) external; function mint(uint256 value) external;
function free(uint256 value) external returns (uint256); function free(uint256 value) external returns (uint256);
function balanceOf(address) external view returns (uint); function balanceOf(address) external view returns (uint);
} }
contract ChiHelpers {
contract ChiHelpers is DSMath, Stores {
/** /**
* @dev CHI token Address * @dev CHI token Address
*/ */
@ -21,7 +15,6 @@ contract ChiHelpers is DSMath, Stores {
} }
} }
contract ChiResolver is ChiHelpers { contract ChiResolver is ChiHelpers {
/** /**
* @dev Mint CHI token. * @dev Mint CHI token.