Module pallet_scored_pool::pallet::storage_types
source · Expand description
Auto-generated docs-only module listing all defined storage types for this pallet. Note that members of this module cannot be used directly and are only provided for documentation purposes.
Structs
- A Map of the candidates. The information in this Map is redundant to the information in the
Pool
. But the Map enables us to easily check if a candidate is already in the pool, without having to iterate over the entire pool (thePool
is not sorted byT::AccountId
, but byT::Score
instead). - Size of the
Members
set. - The current membership, stored as an ordered Vec.
- The current pool of candidates, stored as an ordered Bounded Vec (ordered descending by score,
None
last, highest first).