Type Definition pallet_staking::Ledger

source ·
pub type Ledger<T: Config> = StorageMap<_GeneratedPrefixForStorageLedger<T>, Blake2_128Concat, T::AccountId, StakingLedger<T>>;
Expand description

Map from all (unlocked) “controller” accounts to the info regarding the staking.

Storage type is StorageMap with key type T :: AccountId and value type StakingLedger < T >.