pub type ActiveFees<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageActiveFees<T>, Blake2_128Concat, T::PoolId, Blake2_128Concat, PoolFeeBucket, BoundedVec<PoolFeeOf<T>, T::MaxPoolFeesPerBucket>, ValueQuery>;
Expand description

Represents the active fees for a given pool id and fee bucket. For each fee, the limit as well as pending, disbursement and payable amounts are included.

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 < PoolFeeOf < T > , T :: MaxPoolFeesPerBucket >.

Aliased Type§

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