reorder ERC20 functions, clean up naming

This commit is contained in:
Noah Zinsmeister
2020-01-22 13:14:55 -05:00
parent ea5e63c427
commit 1a4837bffa
6 changed files with 30 additions and 30 deletions

View File

@ -2,7 +2,7 @@ pragma solidity =0.5.16;
import "../UniswapV2ERC20.sol";
contract GenericERC20 is UniswapV2ERC20 {
contract ERC20 is UniswapV2ERC20 {
constructor(uint _totalSupply) public {
if (_totalSupply > 0) _mint(msg.sender, _totalSupply);
}