remove conditional from mint in test ERC20

This commit is contained in:
Noah Zinsmeister
2020-01-22 13:34:43 -05:00
parent 1a4837bffa
commit 524b14ed14

View File

@ -4,6 +4,6 @@ import "../UniswapV2ERC20.sol";
contract ERC20 is UniswapV2ERC20 {
constructor(uint _totalSupply) public {
if (_totalSupply > 0) _mint(msg.sender, _totalSupply);
_mint(msg.sender, _totalSupply);
}
}