Merge pull request #405 from androolloyd/fix/396-make-decimals-uint8-in-token-example

changed decimal to be uint8 so that it matches the ERC20 specification.
This commit is contained in:
Francisco Giordano
2017-08-24 11:12:29 -03:00
committed by GitHub

View File

@ -14,7 +14,7 @@ contract SimpleToken is StandardToken {
string public constant name = "SimpleToken";
string public constant symbol = "SIM";
uint256 public constant decimals = 18;
uint8 public constant decimals = 18;
uint256 public constant INITIAL_SUPPLY = 10000;