You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
813 B
21 lines
813 B
pragma solidity ^0.5.0;
|
|
import "../Crowdsale.sol";
|
|
import "../../access/roles/WhitelistedRole.sol";
|
|
|
|
|
|
/**
|
|
* @title WhitelistCrowdsale
|
|
* @dev Crowdsale in which only whitelisted users can contribute.
|
|
*/
|
|
contract WhitelistCrowdsale is WhitelistedRole, Crowdsale {
|
|
/**
|
|
* @dev Extend parent behavior requiring beneficiary to be whitelisted. Note that no
|
|
* restriction is imposed on the account sending the transaction.
|
|
* @param _beneficiary Token beneficiary
|
|
* @param _weiAmount Amount of wei contributed
|
|
*/
|
|
function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal view {
|
|
require(isWhitelisted(_beneficiary), "WhitelistCrowdsale: beneficiary doesn't have the Whitelisted role");
|
|
super._preValidatePurchase(_beneficiary, _weiAmount);
|
|
}
|
|
}
|
|
|