Type Alias pallet_indices::pallet::Accounts
source · pub type Accounts<T: Config> = StorageMap<_GeneratedPrefixForStorageAccounts<T>, Blake2_128Concat, T::AccountIndex, (T::AccountId, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, bool)>;
Expand description
The lookup from index to account.
Storage type is [StorageMap
] with key type T :: AccountIndex
and value type (T :: AccountId, BalanceOf < T > , bool)
.
Aliased Type§
struct Accounts<T: Config>(/* private fields */);