Files
uniswap-v2/contracts/test/GenericERC20.sol
Noah Zinsmeister f04890ef4c make GenericERC20 inherit from...
...UniswapV2ERC20 not UniswapV2Exchange

tabs -> spaces
2020-01-14 14:23:40 -05:00

10 lines
215 B
Solidity

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