Skip to content

Commit

Permalink
revert back min parachan min fee as we don't want to send dot to AH
Browse files Browse the repository at this point in the history
  • Loading branch information
dmoka committed May 14, 2024
1 parent b3cc5c5 commit cbdbd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/hydradx/src/xcm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ parameter_type_with_key! {
pub ParachainMinFee: |location: MultiLocation| -> Option<u128> {
#[allow(clippy::match_ref_pats)] // false positive
match (location.parents, location.first_interior()) {
(1, Some(Parachain(ASSET_HUB_PARA_ID))) => Some(150_000_000),
(1, Some(Parachain(ASSET_HUB_PARA_ID))) => Some(50_000_000),
_ => None,
}
};
Expand Down

0 comments on commit cbdbd5d

Please sign in to comment.