make GenericERC20 inherit from...

...UniswapV2ERC20 not UniswapV2Exchange

tabs -> spaces
This commit is contained in:
Noah Zinsmeister
2020-01-14 14:23:40 -05:00
parent ddbb5e0ba0
commit f04890ef4c
2 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
pragma solidity 0.5.15;
import "../UniswapV2Exchange.sol";
import "../UniswapV2ERC20.sol";
contract GenericERC20 is UniswapV2Exchange {
contract GenericERC20 is UniswapV2ERC20 {
constructor(uint _totalSupply) public {
if (_totalSupply > 0) _mint(msg.sender, _totalSupply);
}