File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,20 @@ import "../token/StandardToken.sol";
66
77/**
88 * @title SimpleToken
9- * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
9+ * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
1010 * Note they can later distribute these tokens as they wish using `transfer` and other
1111 * `StandardToken` functions.
1212 */
1313contract SimpleToken is StandardToken {
1414
1515 string public constant name = "SimpleToken " ;
1616 string public constant symbol = "SIM " ;
17- uint256 public constant decimals = 18 ;
17+ uint8 public constant decimals = 18 ;
1818
1919 uint256 public constant INITIAL_SUPPLY = 10000 ;
2020
2121 /**
22- * @dev Contructor that gives msg.sender all of existing tokens.
22+ * @dev Contructor that gives msg.sender all of existing tokens.
2323 */
2424 function SimpleToken () {
2525 totalSupply = INITIAL_SUPPLY;
You can’t perform that action at this time.
0 commit comments