pub type ForeignInvestmentInfo<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageForeignInvestmentInfo<T>, Blake2_128Concat, T::AccountId, Blake2_128Concat, T::InvestmentId, InvestmentInfo<T>>;
Expand description

Contains the information about the foreign investment process. The storage is killed once the investment is fully collected, or decreased.

Storage type is [StorageDoubleMap] with key1 type T :: AccountId, key2 type T :: InvestmentId and value type entities :: InvestmentInfo < T >.

Aliased Type§

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