Skip to content

Commit

Permalink
fix DOT in kusama runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
herryho committed Aug 25, 2022
1 parent be6d0ea commit e1bfad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/bifrost-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ use hex_literal::hex;
pub use node_primitives::{
traits::{CheckSubAccount, FarmingInfo, VtokenMintingInterface, VtokenMintingOperator},
AccountId, Amount, AssetIdMapping, AssetIds, Balance, BlockNumber, CurrencyId, ExtraFeeName,
Moment, Nonce, ParaId, PoolId, RpcContributionStatus, TimeUnit, TokenSymbol, DOT_TOKEN_ID,
Moment, Nonce, ParaId, PoolId, RpcContributionStatus, TimeUnit, TokenSymbol,
};
// orml imports
use orml_currencies::BasicCurrencyAdapter;
Expand Down Expand Up @@ -288,7 +288,7 @@ parameter_types! {
pub const RelayCurrencyId: CurrencyId = CurrencyId::Token(TokenSymbol::KSM);
pub const StableCurrencyId: CurrencyId = CurrencyId::Stable(TokenSymbol::KUSD);
pub SelfParaId: u32 = ParachainInfo::parachain_id().into();
pub const PolkadotCurrencyId: CurrencyId = CurrencyId::Token2(DOT_TOKEN_ID);
pub const PolkadotCurrencyId: CurrencyId = CurrencyId::Token(TokenSymbol::DOT);
}

parameter_types! {
Expand Down

0 comments on commit e1bfad2

Please # to comment.