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
359 B
22 lines
359 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
8 years ago
|
|
||
|
|
||
7 years ago
|
import '../crowdsale/CappedCrowdsale.sol';
|
||
8 years ago
|
|
||
|
|
||
|
contract CappedCrowdsaleImpl is CappedCrowdsale {
|
||
|
|
||
|
function CappedCrowdsaleImpl (
|
||
8 years ago
|
uint256 _startTime,
|
||
|
uint256 _endTime,
|
||
8 years ago
|
uint256 _rate,
|
||
|
address _wallet,
|
||
|
uint256 _cap
|
||
7 years ago
|
) public
|
||
8 years ago
|
Crowdsale(_startTime, _endTime, _rate, _wallet)
|
||
7 years ago
|
CappedCrowdsale(_cap)
|
||
8 years ago
|
{
|
||
|
}
|
||
|
|
||
|
}
|