Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^ 0.4.18;
pragma solidity ^0.4.18;

import "../../math/SafeMath.sol";
import "../Crowdsale.sol";
Expand Down Expand Up @@ -36,7 +36,7 @@ contract IndividuallyCappedCrowdsale is Crowdsale, Ownable {
}

/**
* @dev Returns the cap of a specific user.
* @dev Returns the cap of a specific user.
* @param _beneficiary Address whose cap is to be checked
* @return Current cap for individual user
*/
Expand Down
8 changes: 4 additions & 4 deletions contracts/crowdsale/validation/WhitelistedCrowdsale.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^ 0.4.18;
pragma solidity ^0.4.18;

import "../Crowdsale.sol";
import "../../ownership/Ownable.sol";
Expand Down Expand Up @@ -27,9 +27,9 @@ contract WhitelistedCrowdsale is Crowdsale, Ownable {
function addToWhitelist(address _beneficiary) external onlyOwner {
whitelist[_beneficiary] = true;
}

/**
* @dev Adds list of addresses to whitelist. Not overloaded due to limitations with truffle testing.
* @dev Adds list of addresses to whitelist. Not overloaded due to limitations with truffle testing.
* @param _beneficiaries Addresses to be added to the whitelist
*/
function addManyToWhitelist(address[] _beneficiaries) external onlyOwner {
Expand All @@ -39,7 +39,7 @@ contract WhitelistedCrowdsale is Crowdsale, Ownable {
}

/**
* @dev Removes single address from whitelist.
* @dev Removes single address from whitelist.
* @param _beneficiary Address to be removed to the whitelist
*/
function removeFromWhitelist(address _beneficiary) external onlyOwner {
Expand Down