From 45a5d1d511a92d397bf05045f4ad64d88632dee0 Mon Sep 17 00:00:00 2001 From: joepetrowski Date: Fri, 4 Mar 2022 15:24:54 +0100 Subject: [PATCH] add UmpSink config --- runtime/polkadot/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 71cf2ece1ed3..8dbb9459b69f 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1210,7 +1210,8 @@ parameter_types! { impl parachains_ump::Config for Runtime { type Event = Event; - type UmpSink = (); + type UmpSink = + crate::parachains_ump::XcmSink, Runtime>; type FirstMessageFactorPercent = FirstMessageFactorPercent; type ExecuteOverweightOrigin = EnsureRoot; }