RefundableCrowdsaleImpl.sol 392 B

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