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.
24 lines
484 B
24 lines
484 B
pragma solidity ^0.4.24;
|
|
|
|
import "../token/ERC20/ERC20Mintable.sol";
|
|
import "../crowdsale/distribution/RefundableCrowdsale.sol";
|
|
|
|
|
|
contract RefundableCrowdsaleImpl is RefundableCrowdsale {
|
|
|
|
constructor (
|
|
uint256 _openingTime,
|
|
uint256 _closingTime,
|
|
uint256 _rate,
|
|
address _wallet,
|
|
ERC20Mintable _token,
|
|
uint256 _goal
|
|
)
|
|
public
|
|
Crowdsale(_rate, _wallet, _token)
|
|
TimedCrowdsale(_openingTime, _closingTime)
|
|
RefundableCrowdsale(_goal)
|
|
{
|
|
}
|
|
|
|
}
|
|
|