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;
// 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 {
function mint(uint256 value) external;
function free(uint256 value) external returns (uint256);
function balanceOf(address) external view returns (uint);
}
contract ChiHelpers is DSMath, Stores {
contract ChiHelpers {
/**
* @dev CHI token Address
*/
@ -21,7 +15,6 @@ contract ChiHelpers is DSMath, Stores {
}
}
contract ChiResolver is ChiHelpers {
/**
* @dev Mint CHI token.