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
392 B
22 lines
392 B
8 years ago
|
pragma solidity ^0.4.11;
|
||
|
|
||
|
|
||
|
import '../../contracts/crowdsale/RefundableCrowdsale.sol';
|
||
|
|
||
|
|
||
|
contract RefundableCrowdsaleImpl is RefundableCrowdsale {
|
||
|
|
||
|
function RefundableCrowdsaleImpl (
|
||
|
uint256 _startBlock,
|
||
|
uint256 _endBlock,
|
||
|
uint256 _rate,
|
||
|
address _wallet,
|
||
|
uint256 _goal
|
||
|
)
|
||
|
Crowdsale(_startBlock, _endBlock, _rate, _wallet)
|
||
|
RefundableCrowdsale(_goal)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|