123456789101112131415161718192021 |
- 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)
- {
- }
- }
|