Skip to content

Commit

Permalink
implemented recommendation from hacken
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Maree authored and Jay Maree committed Apr 3, 2023
1 parent d08dba5 commit 0c2285c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ChainGPT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import "@openzeppelin/contracts/access/Ownable.sol";

contract ChainGPT is ERC20, ERC20Burnable, Ownable {
constructor() ERC20("ChainGPT", "CGPT") {
_mint(msg.sender, 1000000000 * 10 ** decimals());
_mint(msg.sender, 1_000_000_000 * 10 ** decimals());
}
}

1 comment on commit 0c2285c

@etherx-dev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol what a joke

Please sign in to comment.