From 6113ba1fa62ecc7ecf25f947c56be0d91d2cec1a Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Thu, 23 Sep 2021 14:58:52 +1200 Subject: [PATCH] update BaseXcmWegiht to match Kusama --- runtime/rococo/src/lib.rs | 2 +- runtime/westend/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 9f03cc8253e8..3ea4478e297b 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -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 diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 179088dc1a57..196a28d57819 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -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