Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Update token-erc20.sol #951

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solidity/token-erc20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
uint8 public decimals = 6;
// 18 decimals is the strongly suggested default, avoid changing it
uint256 public totalSupply;

Expand Down