Internal crowdsales (#1439)

* Made some internal crowdsale methods internal.

* Made all Crowdsale constructors internal.
This commit is contained in:
Nicolás Venturo
2018-10-18 16:35:57 -03:00
committed by GitHub
parent 315f426f5c
commit d9fdffe88e
12 changed files with 27 additions and 8 deletions

View File

@ -0,0 +1,9 @@
pragma solidity ^0.4.24;
import "../crowdsale/Crowdsale.sol";
contract CrowdsaleMock is Crowdsale {
constructor(uint256 rate, address wallet, IERC20 token) public
Crowdsale(rate, wallet, token) {
}
}