Type Alias pallet_loans::pallet::ClosedLoan

source ·
pub type ClosedLoan<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageClosedLoan<T>, Blake2_128Concat, T::PoolId, Blake2_128Concat, T::LoanId, ClosedLoan<T>, OptionQuery>;
Expand description

Storage for closed loans. No mutations are expected in this storage. Loans are stored here for historical purposes.

Storage type is [StorageDoubleMap] with key1 type T :: PoolId, key2 type T :: LoanId and value type loans :: ClosedLoan < T >.

Aliased Type§

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