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
370 B
21 lines
370 B
pragma solidity ^0.4.11;
|
|
|
|
|
|
import '../../contracts/crowdsale/CappedCrowdsale.sol';
|
|
|
|
|
|
contract CappedCrowdsaleImpl is CappedCrowdsale {
|
|
|
|
function CappedCrowdsaleImpl (
|
|
uint256 _startBlock,
|
|
uint256 _endBlock,
|
|
uint256 _rate,
|
|
address _wallet,
|
|
uint256 _cap
|
|
)
|
|
Crowdsale(_startBlock, _endBlock, _rate, _wallet)
|
|
CappedCrowdsale(_cap)
|
|
{
|
|
}
|
|
|
|
}
|
|
|