Type Alias pallet_pool_fees::pallet::FeeIds
source · pub type FeeIds<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageFeeIds<T>, Blake2_128Concat, T::PoolId, Blake2_128Concat, PoolFeeBucket, BoundedVec<T::FeeId, T::MaxPoolFeesPerBucket>, ValueQuery>;
Expand description
Maps a pool to their corresponding fee ids with [PoolFeeBucket] granularity.
Lifetime of a storage entry: Forever, inherited from pool lifetime.
Storage type is [StorageDoubleMap
] with key1 type T :: PoolId, key2 type PoolFeeBucket and value type BoundedVec < T :: FeeId, T :: MaxPoolFeesPerBucket >.
Aliased Type§
struct FeeIds<T: Config>(/* private fields */);