You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
394 B
21 lines
394 B
pragma solidity ^0.4.18;
|
|
|
|
|
|
import '../../contracts/crowdsale/RefundableCrowdsale.sol';
|
|
|
|
|
|
contract RefundableCrowdsaleImpl is RefundableCrowdsale {
|
|
|
|
function RefundableCrowdsaleImpl (
|
|
uint256 _startTime,
|
|
uint256 _endTime,
|
|
uint256 _rate,
|
|
address _wallet,
|
|
uint256 _goal
|
|
) public
|
|
Crowdsale(_startTime, _endTime, _rate, _wallet)
|
|
RefundableCrowdsale(_goal)
|
|
{
|
|
}
|
|
|
|
}
|
|
|