Skip to content

Commit

Permalink
fix KUSD type to CurrencyId::Stable (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
ark930 committed Sep 11, 2021
1 parent 9076bfe commit 028ff49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/bifrost/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -845,9 +845,9 @@ orml_traits::parameter_type_with_key! {
pub ExistentialDeposits: |currency_id: CurrencyId| -> Balance {
match currency_id {
&CurrencyId::Native(TokenSymbol::BNC) => 10 * MILLIBNC,
&CurrencyId::Stable(TokenSymbol::KUSD) => 10 * MILLICENTS,
&CurrencyId::Token(TokenSymbol::KSM) => 10 * MILLICENTS,
&CurrencyId::Token(TokenSymbol::KAR) => 10 * MILLICENTS,
&CurrencyId::Token(TokenSymbol::KUSD) => 10 * MILLICENTS,
&CurrencyId::VSToken(TokenSymbol::KSM) => 10 * MILLICENTS,
&CurrencyId::VSBond(TokenSymbol::BNC, ..) => 10 * MILLICENTS,
&CurrencyId::VSBond(TokenSymbol::KSM, ..) => 10 * MILLICENTS,
Expand Down

0 comments on commit 028ff49

Please sign in to comment.