Updated interfaces

This commit is contained in:
Thrilok Kumar 2020-05-04 02:56:10 +05:30
parent 8b83d1bbc6
commit e1cfe964f2
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
pragma solidity ^0.6.0;
interface ERC20 {
interface TokenInterface {
function approve(address, uint) external;
function transfer(address, uint) external;
function transferFrom(address, address, uint) external;

View File

@ -1,7 +1,7 @@
pragma solidity ^0.6.0;
// import files from common directory
import { ERC20 , MemoryInterface, EventInterface} from "../common/interfaces.sol";
import { TokenInterface , MemoryInterface, EventInterface} from "../common/interfaces.sol";
import { Stores } from "../common/stores.sol";
import { DSMath } from "../common/math.sol";