Type Definition pallet_recovery::pallet::Recoverable

source ·
pub type Recoverable<T: Config> = StorageMap<_GeneratedPrefixForStorageRecoverable<T>, Twox64Concat, T::AccountId, RecoveryConfig<BlockNumberFor<T>, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, BoundedVec<<T as Config>::AccountId, <T as Config>::MaxFriends>>>;
Expand description

The set of recoverable accounts and their recovery configuration.

Storage type is StorageMap with key type T :: AccountId and value type RecoveryConfig < BlockNumberFor < T >, BalanceOf < T >, FriendsOf < T > >.