From 524b14ed145aa96729dbe816eee7a334aef6768a Mon Sep 17 00:00:00 2001 From: Noah Zinsmeister Date: Wed, 22 Jan 2020 13:34:43 -0500 Subject: [PATCH] remove conditional from mint in test ERC20 --- contracts/test/ERC20.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/test/ERC20.sol b/contracts/test/ERC20.sol index 4fda721..ada4d74 100644 --- a/contracts/test/ERC20.sol +++ b/contracts/test/ERC20.sol @@ -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); } }