Type Definition pallet_fast_unstake::pallet::Queue

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

The map of all accounts wishing to be unstaked.

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

TWOX-NOTE: SAFE since AccountId is a secure hash.