make clear that this is still just a mock

This commit is contained in:
Noah Zinsmeister
2019-11-21 18:35:02 -05:00
parent fe96d9a789
commit 410ca57f55
2 changed files with 5 additions and 18 deletions

View File

@ -1,12 +0,0 @@
pragma solidity 0.5.12;
import "../token/ERC20.sol";
contract GenericERC20 is ERC20 {
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalSupply
) ERC20(_name, _symbol, _decimals, _totalSupply) public {}
}