Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions runtime/mandala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;

Expand Down Expand Up @@ -839,8 +839,12 @@ parameter_type_with_key! {
}

parameter_type_with_key! {
pub PricingPegged: |_currency_id: CurrencyId| -> Option<CurrencyId> {
None
pub PricingPegged: |currency_id: CurrencyId| -> Option<CurrencyId> {
match currency_id {
// taiKSM
CurrencyId::StableAssetPoolToken(0) => Some(KSM),
_ => None,
}
};
}

Expand Down