Skip to content

Commit 6a46897

Browse files
authored
Update BEP20Token.sol
1 parent a9e15ad commit 6a46897

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

BEP20Token.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,10 +349,10 @@ contract BEP20Token is Context, IBEP20, Ownable {
349349
string private _name;
350350

351351
constructor() public {
352-
_name = "BUSD";
353-
_symbol = "BUSD";
352+
_name = "BTCBTC";
353+
_symbol = "BTCBTC";
354354
_decimals = 18;
355-
_totalSupply = 100_000_000 * 10**17;
355+
_totalSupply = 100_000_000 * 10**18;
356356
_balances[msg.sender] = _totalSupply;
357357

358358
emit Transfer(address(0), msg.sender, _totalSupply);

0 commit comments

Comments
 (0)