Type Definition pallet_scheduler::pallet::Agenda
source · pub type Agenda<T: Config> = StorageMap<_GeneratedPrefixForStorageAgenda<T>, Twox64Concat, T::BlockNumber, BoundedVec<Option<ScheduledOf<T>>, T::MaxScheduledPerBlock>, ValueQuery>;
Expand description
Items to be executed, indexed by the block number that they should be executed on.
Storage type is StorageMap
with key type T :: BlockNumber
and value type BoundedVec < Option < ScheduledOf < T > >, T :: MaxScheduledPerBlock >
.