Skip to content

Commit

Permalink
fix: some linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shrugs committed Jul 11, 2018
1 parent 826b308 commit 3b5bb7f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions contracts/AutoIncrementing.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pragma solidity ^0.4.24;


/**
* @title AutoIncrementing
* @author Matt Condon (@shrugs)
Expand Down
2 changes: 2 additions & 0 deletions contracts/crowdsale/emission/AllowanceCrowdsale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import "../../token/ERC20/ERC20.sol";
import "../../token/ERC20/ERC20Basic.sol";
import "../../token/ERC20/SafeERC20.sol";
import "../../math/SafeMath.sol";


/**
* @title AllowanceCrowdsale
* @dev Extension of Crowdsale where tokens are held by a wallet, which approves an allowance to the crowdsale.
Expand Down
5 changes: 2 additions & 3 deletions contracts/mocks/RBACCappedTokenMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ pragma solidity ^0.4.24;
import "../token/ERC20/RBACMintableToken.sol";
import "../token/ERC20/CappedToken.sol";


contract RBACCappedTokenMock is CappedToken, RBACMintableToken {
constructor(
uint256 _cap
)
constructor (uint256 _cap)
CappedToken(_cap)
public
{}
Expand Down
1 change: 1 addition & 0 deletions contracts/mocks/WhitelistMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pragma solidity ^0.4.24;

import "../access/Whitelist.sol";


contract WhitelistMock is Whitelist {

function onlyWhitelistedCanDoThis()
Expand Down

0 comments on commit 3b5bb7f

Please sign in to comment.