From d6f217ce4e7123eea0dafd1417d9e5e6f4b6fc54 Mon Sep 17 00:00:00 2001 From: Tomasz Polaczyk Date: Mon, 25 Nov 2024 15:41:23 +0100 Subject: [PATCH] PR comments --- solo-chains/runtime/dancelight/src/lib.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/solo-chains/runtime/dancelight/src/lib.rs b/solo-chains/runtime/dancelight/src/lib.rs index fc5a49955..4ee0f689f 100644 --- a/solo-chains/runtime/dancelight/src/lib.rs +++ b/solo-chains/runtime/dancelight/src/lib.rs @@ -220,16 +220,13 @@ pub enum AggregateMessageOrigin { #[codec(index = 0)] Ump(UmpQueueId), + /// The message came from a snowbridge channel. It will be processed by `snowbridge_pallet_outbound_queue`. #[codec(index = 1)] - /// The message came from a snowbridge channel. - /// - /// This is used by Snowbridge inbound queue. Snowbridge(ChannelId), + /// The message came from a snowbridge channel, and it's a custom message that only exists in Tanssi. + /// This will be processed by `CustomProcessSnowbridgeMessage`. #[codec(index = 2)] - /// The message came from a snowbridge channel. - /// - /// This is used by Snowbridge inbound queue. SnowbridgeTanssi(ChannelId), }