Browse Source

Update SimpleToken.sol

Dmitry Dudin 8 years ago
parent
commit
790833e5d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/examples/SimpleToken.sol

+ 1 - 1
contracts/examples/SimpleToken.sol

@@ -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;