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
426 B
22 lines
426 B
pragma solidity ^0.4.24;
|
|
|
|
import "../token/ERC20/IERC20.sol";
|
|
import "../crowdsale/distribution/PostDeliveryCrowdsale.sol";
|
|
|
|
|
|
contract PostDeliveryCrowdsaleImpl is PostDeliveryCrowdsale {
|
|
|
|
constructor (
|
|
uint256 _openingTime,
|
|
uint256 _closingTime,
|
|
uint256 _rate,
|
|
address _wallet,
|
|
IERC20 _token
|
|
)
|
|
public
|
|
TimedCrowdsale(_openingTime, _closingTime)
|
|
Crowdsale(_rate, _wallet, _token)
|
|
{
|
|
}
|
|
|
|
}
|
|
|