* fix: swithc WhitelistedCrowdsale to use Whitelist.sol * feat: refactor whitelist.sol, rbac.sol and whitelistedcrowdsale.sol * feat: add event arg assets and update whitelist * fix: update modifier comment and also test isWhitelisted * fix: remove onlyWhitelisted backwards compat attempt, fix explicit inheritance * fix: remove underscore prefix from event args * fix: user access/Whitelist
20 lines
367 B
Solidity
20 lines
367 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../token/ERC20/ERC20.sol";
|
|
import "../crowdsale/validation/WhitelistedCrowdsale.sol";
|
|
import "../crowdsale/Crowdsale.sol";
|
|
|
|
|
|
contract WhitelistedCrowdsaleImpl is Crowdsale, WhitelistedCrowdsale {
|
|
|
|
constructor (
|
|
uint256 _rate,
|
|
address _wallet,
|
|
ERC20 _token
|
|
)
|
|
Crowdsale(_rate, _wallet, _token)
|
|
public
|
|
{
|
|
}
|
|
}
|