Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

update BaseXcmWeight to match Kusama #3911

Merged
1 commit merged into from
Sep 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ type LocalOriginConverter = (
);

parameter_types! {
pub const BaseXcmWeight: Weight = 100_000;
pub const BaseXcmWeight: Weight = 1_000_000_000;
}

/// The XCM router. When we want to send an XCM message, we use this type. It amalgamates all of our
Expand Down
2 changes: 1 addition & 1 deletion runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ type LocalOriginConverter = (
);

parameter_types! {
pub const BaseXcmWeight: Weight = 10_000_000;
pub const BaseXcmWeight: Weight = 1_000_000_000;
}

/// The XCM router. When we want to send an XCM message, we use this type. It amalgamates all of our
Expand Down