Commit b50894aa by Francisco Giordano Committed by GitHub

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.
parents d6f07267 1827cbfd
...@@ -14,7 +14,7 @@ contract SimpleToken is StandardToken { ...@@ -14,7 +14,7 @@ contract SimpleToken is StandardToken {
string public constant name = "SimpleToken"; string public constant name = "SimpleToken";
string public constant symbol = "SIM"; string public constant symbol = "SIM";
uint256 public constant decimals = 18; uint8 public constant decimals = 18;
uint256 public constant INITIAL_SUPPLY = 10000; uint256 public constant INITIAL_SUPPLY = 10000;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment