pub type DepositOf<T: Config> = StorageMap<_GeneratedPrefixForStorageDepositOf<T>, Twox64Concat, PropIndex, (BoundedVec<T::AccountId, T::MaxDeposits>, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance)>;
Expand description

Those who have locked a deposit.

TWOX-NOTE: Safe, as increasing integer keys are safe.

Storage type is [StorageMap] with key type PropIndex and value type (BoundedVec < T :: AccountId, T :: MaxDeposits > , BalanceOf < T >).

Aliased Type§

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