Skip to content

Commit

Permalink
mint 50
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Mar 3, 2023
1 parent 4f002d9 commit 18fe835
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/protocol/contracts/test/erc20/FreeMintERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ contract FreeMintERC20 is ERC20 {
if (minters[msg.sender]) {
revert HasMinted();
}

minters[msg.sender] = true;
_mint(to, 5 * (10 ** decimals()));
_mint(to, 50 * (10 ** decimals()));
}
}

0 comments on commit 18fe835

Please sign in to comment.