diff --git a/runtime/mandala/src/lib.rs b/runtime/mandala/src/lib.rs index c56aa296c..95359681a 100644 --- a/runtime/mandala/src/lib.rs +++ b/runtime/mandala/src/lib.rs @@ -108,7 +108,7 @@ pub use runtime_common::{ OffchainSolutionWeightLimit, OperationalFeeMultiplier, OperatorMembershipInstanceAcala, Price, ProxyType, Rate, Ratio, RelayChainBlockNumberProvider, RelayChainSubAccountId, RuntimeBlockLength, RuntimeBlockWeights, SystemContractsFilter, TechnicalCommitteeInstance, TechnicalCommitteeMembershipInstance, TimeStampedPrice, - TipPerWeightStep, ACA, AUSD, DOT, LDOT, RENBTC, + TipPerWeightStep, ACA, AUSD, DOT, KSM, LDOT, RENBTC, }; pub use xcm::latest::prelude::*; @@ -839,8 +839,12 @@ parameter_type_with_key! { } parameter_type_with_key! { - pub PricingPegged: |_currency_id: CurrencyId| -> Option { - None + pub PricingPegged: |currency_id: CurrencyId| -> Option { + match currency_id { + // taiKSM + CurrencyId::StableAssetPoolToken(0) => Some(KSM), + _ => None, + } }; }