AllowanceCrowdsaleImpl.sol 428 B

1234567891011121314
  1. pragma solidity ^0.5.7;
  2. import "../token/ERC20/IERC20.sol";
  3. import "../crowdsale/emission/AllowanceCrowdsale.sol";
  4. contract AllowanceCrowdsaleImpl is AllowanceCrowdsale {
  5. constructor (uint256 rate, address payable wallet, IERC20 token, address tokenWallet)
  6. public
  7. Crowdsale(rate, wallet, token)
  8. AllowanceCrowdsale(tokenWallet)
  9. {
  10. // solhint-disable-previous-line no-empty-blocks
  11. }
  12. }