Extrinsic to restore corrupt staking ledgers (#3706)
This PR adds a new extrinsic `Call::restore_ledger ` gated by `StakingAdmin` origin that restores a corrupted staking ledger. This extrinsic will be used to recover ledgers that were affected by the issue discussed in https://github.com/paritytech/polkadot-sdk/issues/3245. The extrinsic will re-write the storage items associated with a stash account provided as input parameter. The data used to reset the ledger can be either i) fetched on-chain or ii) partially/totally set by the input parameters of the call. In order to use on-chain data to restore the staking locks, we need a way to read the current lock in the balances pallet. This PR adds a `InspectLockableCurrency` trait and implements it in the pallet balances. An alternative would be to tightly couple staking with the pallet balances but that's inelegant (an example of how it would look like in [this branch](https://github.com/paritytech/polkadot-sdk/tree/gpestana/ledger-badstate-clean_tightly)...
parent
374aefa4
Pipeline
#459753
failed
with stages
in
50 minutes and 55 seconds
Stage:
Stage:
Stage:
Stage:
Stage:
Stage:
Stage:
Showing
- polkadot/runtime/westend/src/weights/pallet_staking.rs 156 additions, 130 deletionspolkadot/runtime/westend/src/weights/pallet_staking.rs
- prdoc/pr_3706.prdoc 20 additions, 0 deletionsprdoc/pr_3706.prdoc
- substrate/frame/balances/src/impl_currency.rs 11 additions, 2 deletionssubstrate/frame/balances/src/impl_currency.rs
- substrate/frame/balances/src/tests/currency_tests.rs 20 additions, 2 deletionssubstrate/frame/balances/src/tests/currency_tests.rs
- substrate/frame/staking/Cargo.toml 1 addition, 1 deletionsubstrate/frame/staking/Cargo.toml
- substrate/frame/staking/src/benchmarking.rs 9 additions, 0 deletionssubstrate/frame/staking/src/benchmarking.rs
- substrate/frame/staking/src/lib.rs 14 additions, 0 deletionssubstrate/frame/staking/src/lib.rs
- substrate/frame/staking/src/mock.rs 73 additions, 42 deletionssubstrate/frame/staking/src/mock.rs
- substrate/frame/staking/src/pallet/impls.rs 46 additions, 14 deletionssubstrate/frame/staking/src/pallet/impls.rs
- substrate/frame/staking/src/pallet/mod.rs 113 additions, 8 deletionssubstrate/frame/staking/src/pallet/mod.rs
- substrate/frame/staking/src/tests.rs 416 additions, 30 deletionssubstrate/frame/staking/src/tests.rs
- substrate/frame/staking/src/weights.rs 318 additions, 259 deletionssubstrate/frame/staking/src/weights.rs
- substrate/frame/support/src/traits.rs 2 additions, 2 deletionssubstrate/frame/support/src/traits.rs
- substrate/frame/support/src/traits/tokens/currency.rs 1 addition, 1 deletionsubstrate/frame/support/src/traits/tokens/currency.rs
- substrate/frame/support/src/traits/tokens/currency/lockable.rs 6 additions, 0 deletions...rate/frame/support/src/traits/tokens/currency/lockable.rs
Please register or sign in to comment