File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ import "../token/MintableToken.sol";
12
12
*/
13
13
contract SampleCrowdsaleToken is MintableToken {
14
14
15
- string public constant name = "Sample Crowdsale Token " ;
16
- string public constant symbol = "SCT " ;
17
- uint8 public constant decimals = 18 ;
15
+ string public constant name = "Sample Crowdsale Token " ; // solium-disable-line uppercase
16
+ string public constant symbol = "SCT " ; // solium-disable-line uppercase
17
+ uint8 public constant decimals = 18 ; // solium-disable-line uppercase
18
18
19
19
}
20
20
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ import "../token/StandardToken.sol";
12
12
*/
13
13
contract SimpleToken is StandardToken {
14
14
15
- string public constant name = "SimpleToken " ;
16
- string public constant symbol = "SIM " ;
17
- uint8 public constant decimals = 18 ;
15
+ string public constant name = "SimpleToken " ; // solium-disable-line uppercase
16
+ string public constant symbol = "SIM " ; // solium-disable-line uppercase
17
+ uint8 public constant decimals = 18 ; // solium-disable-line uppercase
18
18
19
19
uint256 public constant INITIAL_SUPPLY = 10000 * (10 ** uint256 (decimals));
20
20
You can’t perform that action at this time.
0 commit comments