Skip to content

Commit

Permalink
fix: add ignore directives to SampleCrowdsale and SimpleToken
Browse files Browse the repository at this point in the history
  • Loading branch information
shrugs committed Jan 15, 2018
1 parent 0cec4fd commit 7d6fc54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions contracts/examples/SampleCrowdsale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import "../token/MintableToken.sol";
*/
contract SampleCrowdsaleToken is MintableToken {

string public constant name = "Sample Crowdsale Token";
string public constant symbol = "SCT";
uint8 public constant decimals = 18;
string public constant name = "Sample Crowdsale Token"; // solium-disable-line uppercase
string public constant symbol = "SCT"; // solium-disable-line uppercase
uint8 public constant decimals = 18; // solium-disable-line uppercase

}

Expand Down
6 changes: 3 additions & 3 deletions contracts/examples/SimpleToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import "../token/StandardToken.sol";
*/
contract SimpleToken is StandardToken {

string public constant name = "SimpleToken";
string public constant symbol = "SIM";
uint8 public constant decimals = 18;
string public constant name = "SimpleToken"; // solium-disable-line uppercase
string public constant symbol = "SIM"; // solium-disable-line uppercase
uint8 public constant decimals = 18; // solium-disable-line uppercase

uint256 public constant INITIAL_SUPPLY = 10000 * (10 ** uint256(decimals));

Expand Down

0 comments on commit 7d6fc54

Please sign in to comment.