Type Alias pallet_loans::pallet::CreatedLoan

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

Storage for loans that has been created but are not still active.

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

Aliased Type§

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