diff --git a/polkadot/xcm/xcm-builder/src/universal_exports.rs b/polkadot/xcm/xcm-builder/src/universal_exports.rs index 37e984a76fa1d29fd241c32dae8e581873683f71..81042a1ad4a398eb3b2583710efed2c4248a20f1 100644 --- a/polkadot/xcm/xcm-builder/src/universal_exports.rs +++ b/polkadot/xcm/xcm-builder/src/universal_exports.rs @@ -158,8 +158,10 @@ impl<Bridges: ExporterFor, Router: SendXcm, UniversalLocation: Get<InteriorMulti // We then send a normal message to the bridge asking it to export the prepended // message to the remote chain. This will only work if the bridge will do the message // export for free. Common-good chains will typically be afforded this. - let message = - Xcm(vec![ExportMessage { network: remote_network, destination: remote_location, xcm }]); + let message = Xcm(vec![ + UnpaidExecution { weight_limit: Unlimited, check_origin: None }, + ExportMessage { network: remote_network, destination: remote_location, xcm }, + ]); validate_send::<Router>(bridge, message) }