Type Definition pallet_scheduler::pallet::Agenda
source · pub type Agenda<T: Config> = StorageMap<_GeneratedPrefixForStorageAgenda<T>, Twox64Concat, BlockNumberFor<T>, 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 BlockNumberFor < T >
and value type BoundedVec < Option < ScheduledOf < T > >, T :: MaxScheduledPerBlock >
.