From 1827cbfd2a35d37e63d1b52522ffc7d8ff75ddd1 Mon Sep 17 00:00:00 2001 From: Andrew Redden Date: Thu, 24 Aug 2017 10:41:41 -0300 Subject: [PATCH] changed decimal to be uint8 so that it matches the ERC20 specification. --- contracts/examples/SimpleToken.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/examples/SimpleToken.sol b/contracts/examples/SimpleToken.sol index b1ea2bdcb..a226de227 100644 --- a/contracts/examples/SimpleToken.sol +++ b/contracts/examples/SimpleToken.sol @@ -6,7 +6,7 @@ import "../token/StandardToken.sol"; /** * @title SimpleToken - * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. + * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `StandardToken` functions. */ @@ -14,12 +14,12 @@ 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; /** - * @dev Contructor that gives msg.sender all of existing tokens. + * @dev Contructor that gives msg.sender all of existing tokens. */ function SimpleToken() { totalSupply = INITIAL_SUPPLY;