Type Alias pallet_fast_unstake::pallet::Queue

source ·
pub type Queue<T: Config> = CountedStorageMap<_GeneratedPrefixForStorageQueue<T>, Twox64Concat, T::AccountId, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>;
Expand description

The map of all accounts wishing to be unstaked.

Keeps track of AccountId wishing to unstake and it’s corresponding deposit.

Storage type is CountedStorageMap with key type T :: AccountId and value type BalanceOf < T >.

Aliased Type§

struct Queue<T: Config>(/* private fields */);