RefundableCrowdsaleImpl.sol 381 B

123456789101112131415161718192021
  1. pragma solidity ^0.4.18;
  2. import '../crowdsale/RefundableCrowdsale.sol';
  3. contract RefundableCrowdsaleImpl is RefundableCrowdsale {
  4. function RefundableCrowdsaleImpl (
  5. uint256 _startTime,
  6. uint256 _endTime,
  7. uint256 _rate,
  8. address _wallet,
  9. uint256 _goal
  10. ) public
  11. Crowdsale(_startTime, _endTime, _rate, _wallet)
  12. RefundableCrowdsale(_goal)
  13. {
  14. }
  15. }