Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Fankouzu committed May 11, 2020
1 parent 7377171 commit d67f20e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions contracts/Crowdsale/PostDeliveryCrowdsale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ pragma solidity ^0.5.0;
import "@openzeppelin/contracts/crowdsale/Crowdsale.sol";
import "@openzeppelin/contracts/crowdsale/emission/AllowanceCrowdsale.sol";
import "@openzeppelin/contracts/crowdsale/distribution/PostDeliveryCrowdsale.sol";
import "@openzeppelin/contracts/crowdsale/validation/TimedCrowdsale.sol";


//到期后交付的众筹
contract PostDeliveryCrowdsaleContract is
Crowdsale,
AllowanceCrowdsale,
TimedCrowdsale,
PostDeliveryCrowdsale
{
constructor(
Expand All @@ -24,7 +22,6 @@ contract PostDeliveryCrowdsaleContract is
public
AllowanceCrowdsale(tokenWallet)
TimedCrowdsale(openingTime, closingTime)
PostDeliveryCrowdsale()
Crowdsale(rate, wallet, token)
{}
}
2 changes: 0 additions & 2 deletions contracts/Crowdsale/RefundableCrowdsale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pragma solidity ^0.5.0;

import "@openzeppelin/contracts/crowdsale/Crowdsale.sol";
import "@openzeppelin/contracts/crowdsale/emission/AllowanceCrowdsale.sol";
import "@openzeppelin/contracts/crowdsale/distribution/RefundableCrowdsale.sol";
import "@openzeppelin/contracts/crowdsale/distribution/RefundablePostDeliveryCrowdsale.sol";


Expand All @@ -26,7 +25,6 @@ contract RefundableCrowdsaleContract is
AllowanceCrowdsale(tokenWallet)
TimedCrowdsale(openingTime, closingTime)
RefundableCrowdsale(goal)
RefundablePostDeliveryCrowdsale()
{}

function _finalization() internal {
Expand Down

0 comments on commit d67f20e

Please sign in to comment.