Type Alias pallet_broker::pallet::AutoRenewals
source · pub type AutoRenewals<T: Config> = StorageValue<_GeneratedPrefixForStorageAutoRenewals<T>, BoundedVec<AutoRenewalRecord, T::MaxAutoRenewals>, ValueQuery>;
Expand description
Keeping track of cores which have auto-renewal enabled.
Sorted by CoreIndex
to make the removal of cores from auto-renewal more efficient.
Storage type is [StorageValue
] with value type BoundedVec < AutoRenewalRecord, T :: MaxAutoRenewals >
.
Aliased Type§
struct AutoRenewals<T: Config>(/* private fields */);