12345678910111213141516171819202122 |
- pragma solidity ^0.4.18;
- import "../crowdsale/RefundableCrowdsale.sol";
- contract RefundableCrowdsaleImpl is RefundableCrowdsale {
- function RefundableCrowdsaleImpl (
- uint256 _startTime,
- uint256 _endTime,
- uint256 _rate,
- address _wallet,
- uint256 _goal,
- MintableToken _token
- ) public
- Crowdsale(_startTime, _endTime, _rate, _wallet, _token)
- RefundableCrowdsale(_goal)
- {
- }
- }
|