diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs
index 1ca44b02d0..ec31663aae 100644
--- a/runtime/acala/src/lib.rs
+++ b/runtime/acala/src/lib.rs
@@ -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 {
diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs
index ab287b6bd8..200a7fa837 100644
--- a/runtime/karura/src/lib.rs
+++ b/runtime/karura/src/lib.rs
@@ -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 {