From dc12ea6639f9efb17860e0655571385a62de1fed Mon Sep 17 00:00:00 2001 From: Adam Reif Date: Thu, 4 Aug 2022 16:40:31 -0500 Subject: [PATCH] fix sequencing comment Signed-off-by: Adam Reif --- runtime/calamari/src/lib.rs | 4 ++-- runtime/dolphin/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index 7ca3628c7..12009ae80 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -738,10 +738,10 @@ construct_runtime!( TechnicalCommittee: pallet_collective::::{Pallet, Call, Storage, Origin, Event, Config} = 17, TechnicalMembership: pallet_membership::::{Pallet, Call, Storage, Event, Config} = 18, - // Collator support. the order of these 5 are important and shall not change. - // Session must be included *before* AuthorInherent + // Collator suppot AuthorInherent: pallet_author_inherent::{Pallet, Call, Storage, Inherent} = 60, AuraAuthorFilter: pallet_aura_style_filter::{Pallet, Storage} = 63, + // The order of the next 4 is important and shall not change. Authorship: pallet_authorship::{Pallet, Call, Storage} = 20, CollatorSelection: manta_collator_selection::{Pallet, Call, Storage, Event, Config} = 21, Session: pallet_session::{Pallet, Call, Storage, Event, Config} = 22, diff --git a/runtime/dolphin/src/lib.rs b/runtime/dolphin/src/lib.rs index 1b9054f4a..a71dfdd47 100644 --- a/runtime/dolphin/src/lib.rs +++ b/runtime/dolphin/src/lib.rs @@ -727,10 +727,10 @@ construct_runtime!( TechnicalCommittee: pallet_collective::::{Pallet, Call, Storage, Origin, Event, Config} = 17, TechnicalMembership: pallet_membership::::{Pallet, Call, Storage, Event, Config} = 18, - // Collator support. the order of these 5 are important and shall not change. - // Session must be included *before* AuthorInherent + // Collator support AuthorInherent: pallet_author_inherent::{Pallet, Call, Storage, Inherent} = 60, AuraAuthorFilter: pallet_aura_style_filter::{Pallet, Storage} = 63, + // The order of the next 4 is important and shall not change. Authorship: pallet_authorship::{Pallet, Call, Storage} = 20, CollatorSelection: manta_collator_selection::{Pallet, Call, Storage, Event, Config} = 21, Session: pallet_session::{Pallet, Call, Storage, Event, Config} = 22,