Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Local Pluralities Get Free Xcm Execution #125

Merged
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com>
  • Loading branch information
muharem and joepetrowski authored Dec 19, 2023
commit 77d6f5522e2c9c8d50ae9a1dbfabeb683a8d67b4
2 changes: 1 addition & 1 deletion relay/kusama/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ impl Contains<RuntimeCall> for SafeCallFilter {
}
}

/// Locations that will not be charged fees in the executor, either execution or delivery.
/// Locations that will not be charged fees in the executor, neither for execution nor delivery.
/// We only waive fees for system functions, which these locations represent.
pub type WaivedLocations = (SystemParachains, Equals<RootLocation>, LocalPlurality);

Expand Down
2 changes: 1 addition & 1 deletion relay/polkadot/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl Contains<RuntimeCall> for SafeCallFilter {
}
}

/// Locations that will not be charged fees in the executor, either execution or delivery.
/// Locations that will not be charged fees in the executor, neither for execution nor delivery.
/// We only waive fees for system functions, which these locations represent.
pub type WaivedLocations = (SystemParachains, Equals<RootLocation>, LocalPlurality);

Expand Down