Skip to content

Commit

Permalink
update homa mint and redeem threshold (#2638)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc authored Nov 23, 2023
1 parent 2b488b1 commit c40da61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions runtime/acala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1528,8 +1528,8 @@ parameter_types! {
pub ActiveSubAccountsIndexList: Vec<u16> = vec![
0, // 15sr8Dvq3AT3Z2Z1y8FnQ4VipekAHhmQnrkgzegUr1tNgbcn
];
pub MintThreshold: Balance = 5 * dollar(DOT);
pub RedeemThreshold: Balance = 50 * dollar(LDOT);
pub MintThreshold: Balance = dollar(DOT);
pub RedeemThreshold: Balance = 5 * dollar(LDOT);
}

impl module_homa::Config for Runtime {
Expand Down
4 changes: 2 additions & 2 deletions runtime/karura/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1542,8 +1542,8 @@ parameter_types! {
1, // FDVu3RdH5WsE2yTdXN3QMq6v1XVDK8GKjhq5oFjXe8wZYpL
2, // EMrKvFy7xLgzzdgruXT9oXERt553igEScqgSjoDm3GewPSA
];
pub MintThreshold: Balance = dollar(KSM);
pub RedeemThreshold: Balance = dollar(LKSM);
pub MintThreshold: Balance = 10 * cent(KSM);
pub RedeemThreshold: Balance = 50 * cent(LKSM);
}

impl module_homa::Config for Runtime {
Expand Down

0 comments on commit c40da61

Please sign in to comment.