pub type RcCrowdloanReserve<T: Config> = StorageNMap<_GeneratedPrefixForStorageRcCrowdloanReserve<T>, (NMapKey<Twox64Concat, BlockNumberFor<T>>, NMapKey<Twox64Concat, ParaId>, NMapKey<Twox64Concat, T::AccountId>), BalanceOf<T>, OptionQuery>;
Expand description
The reserve that was taken to create a crowdloan.
This is normally 500 DOT and can be refunded as last step after all
RcCrowdloanContribution
s of this loan have been withdrawn.
Keys:
- Block number after which this can be unreserved
- The para_id of the crowdloan
- The account that will have the balance unreserved
Storage type is [StorageNMap
] with keys type (BlockNumberFor < T >, ParaId, T :: AccountId) and value type BalanceOf < T >.
Aliased Type§
struct RcCrowdloanReserve<T: Config>(/* private fields */);