referrerpolicy=no-referrer-when-downgrade
pub type PendingConfigs<T: Config> = StorageValue<_GeneratedPrefixForStoragePendingConfigs<T>, Vec<(SessionIndex, HostConfiguration<BlockNumberFor<T>>)>, ValueQuery>;
Expand description

Pending configuration changes.

This is a list of configuration changes, each with a session index at which it should be applied.

The list is sorted ascending by session index. Also, this list can only contain at most 2 items: for the next session and for the scheduled_session.

Storage type is [StorageValue] with value type Vec < (SessionIndex, HostConfiguration < BlockNumberFor < T > >) >.

Aliased Type§

struct PendingConfigs<T: Config>(/* private fields */);