Type Definition pallet_proof_of_stake::pallet::ActivatedLockedLiquidityForSchedules
source · pub type ActivatedLockedLiquidityForSchedules<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageActivatedLockedLiquidityForSchedules<T>, Twox64Concat, <T as Config>::AccountId, Twox64Concat, <<T as Config>::Currency as MultiTokenCurrency<<T as Config>::AccountId>>::CurrencyId, <<T as Config>::Currency as MultiTokenCurrency<<T as Config>::AccountId>>::Balance, ValueQuery>;
Expand description
Tracks how much of the liquidity was activated for schedule rewards and not yet liquidity mining rewards. That information is essential to properly handle token unlcocks when liquidity is deactivated.
Storage type is StorageDoubleMap
with key1 type AccountIdOf < T >, key2 type CurrencyIdOf < T > and value type BalanceOf < T >.