Files
uniswap-v2/contracts/test/GenericERC20.sol
Noah Zinsmeister cbe801b54f remove forfeit{,from}
make name + symbol + decimals constant

add GenericERC20

rename some contracts

update tests to reflect all of this
2020-01-13 15:59:07 -05:00

10 lines
221 B
Solidity

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