pub type NextElectionPage<T: Config> = StorageValue<_GeneratedPrefixForStorageNextElectionPage<T>, PageIndex, OptionQuery>;
Expand description
Keeps track of an ongoing multi-page election solution request.
If Some(_)``, it is the next page that we intend to elect. If
None`, we are not in the
election process.
This is only set in multi-block elections. Should always be None
otherwise.
Storage type is [StorageValue
] with value type PageIndex
.
Aliased Type§
struct NextElectionPage<T: Config>(/* private fields */);