Type Definition pallet_session::pallet::QueuedKeys
source · pub type QueuedKeys<T: Config> = StorageValue<_GeneratedPrefixForStorageQueuedKeys<T>, Vec<(T::ValidatorId, T::Keys)>, ValueQuery>;
Expand description
The queued keys for the next session. When the next session begins, these keys will be used to determine the validator’s session keys.
Storage type is StorageValue
with value type Vec < (T :: ValidatorId, T :: Keys) >
.