Add notice about deprecated Crowdsales (#2116)

* Remove crowdsales from sidebar documentation, add links to old version

* Remove mentions of Crowdsales from the documentation
This commit is contained in:
Nicolás Venturo
2020-03-11 15:26:21 -03:00
committed by GitHub
parent 0449062126
commit 7acd60d152
6 changed files with 12 additions and 261 deletions

View File

@ -10,8 +10,7 @@ import "./ConditionalEscrow.sol";
* @dev The primary account (that is, the contract that instantiates this
* contract) may deposit, close the deposit period, and allow for either
* withdrawal by the beneficiary, or refunds to the depositors. All interactions
* with `RefundEscrow` will be made through the primary contract. See the
* `RefundableCrowdsale` contract for an example of `RefundEscrow`s use.
* with `RefundEscrow` will be made through the primary contract.
*/
contract RefundEscrow is ConditionalEscrow {
enum State { Active, Refunding, Closed }