WhitelistedCrowdsaleImpl.sol 343 B

12345678910111213141516171819
  1. pragma solidity ^0.4.21;
  2. import "../token/ERC20/ERC20.sol";
  3. import "../crowdsale/validation/WhitelistedCrowdsale.sol";
  4. contract WhitelistedCrowdsaleImpl is WhitelistedCrowdsale {
  5. function WhitelistedCrowdsaleImpl (
  6. uint256 _rate,
  7. address _wallet,
  8. ERC20 _token
  9. )
  10. public
  11. Crowdsale(_rate, _wallet, _token)
  12. {
  13. }
  14. }