Expand description
Storage migrations for the Staking pallet. The changelog for this is maintained at CHANGELOG.md.
Modules§
- Migration of era exposure storage items to paged exposures. Changelog: v14.
- Migrating
OffendingValidators
fromVec<(u32, bool)>
toVec<u32>
- Migrating
DisabledValidators
fromVec<u32>
toVec<(u32, OffenceSeverity)>
to track offense severity for re-enabling purposes. - Migrates
UnappliedSlashes
to a new storage structure to support paged slashing. This ensures that slashing can be processed in batches, preventing large storage operations in a single block.