pub type BondedEras<T: Config> = StorageValue<_GeneratedPrefixForStorageBondedEras<T>, Vec<(EraIndex, SessionIndex)>, ValueQuery>;
Expand description
A mapping from still-bonded eras to the first session index of that era.
Must contains information for eras for the range:
[active_era - bounding_duration; active_era]
Storage type is [StorageValue
] with value type Vec < (EraIndex, SessionIndex) >
.
Aliased Type§
struct BondedEras<T: Config>(/* private fields */);