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.
22 lines
415 B
22 lines
415 B
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)
|
|
{
|
|
}
|
|
|
|
}
|
|
|