From b128ee663c7da31bee03fffe72992474db941431 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Tue, 4 Aug 2020 15:40:04 +0530 Subject: [PATCH] Removed import files --- contracts/connectors/chi.sol | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/contracts/connectors/chi.sol b/contracts/connectors/chi.sol index 2cc15db..a706104 100644 --- a/contracts/connectors/chi.sol +++ b/contracts/connectors/chi.sol @@ -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.