remove conditional from mint in test ERC20
This commit is contained in:
@ -4,6 +4,6 @@ import "../UniswapV2ERC20.sol";
|
|||||||
|
|
||||||
contract ERC20 is UniswapV2ERC20 {
|
contract ERC20 is UniswapV2ERC20 {
|
||||||
constructor(uint _totalSupply) public {
|
constructor(uint _totalSupply) public {
|
||||||
if (_totalSupply > 0) _mint(msg.sender, _totalSupply);
|
_mint(msg.sender, _totalSupply);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user