Type Alias pallet_election_provider_multi_phase::pallet::Round
source · pub type Round<T: Config> = StorageValue<_GeneratedPrefixForStorageRound<T>, u32, ValueQuery, DefaultForRound>;
Expand description
Internal counter for the number of rounds.
This is useful for de-duplication of transactions submitted to the pool, and general diagnostics of the pallet.
This is merely incremented once per every time that an upstream elect
is called.
Storage type is [StorageValue
] with value type u32
.
Aliased Type§
struct Round<T: Config>(/* private fields */);