From bccaf4ef2c9431c25543fc83ab0dacc64b94cbfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCn=20=C3=96zerk?= Date: Mon, 15 Jan 2024 19:06:26 +0300 Subject: [PATCH] group pallets in a consistent way for documentation (#101) * group pallets in a consistent way for documentation * move multisig and proxy to system support --- runtime/src/lib.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 4cc4aac..41c3956 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -620,31 +620,32 @@ impl pallet_utility::Config for Runtime { construct_runtime!( pub enum Runtime { - // System support stuff. + // System Support System: frame_system = 0, ParachainSystem: cumulus_pallet_parachain_system = 1, Timestamp: pallet_timestamp = 2, ParachainInfo: parachain_info = 3, Proxy: pallet_proxy = 4, Utility: pallet_utility = 5, + Multisig: pallet_multisig = 6, - // Monetary stuff. + + // Monetary Balances: pallet_balances = 10, TransactionPayment: pallet_transaction_payment = 11, Assets: pallet_assets = 12, // Governance Sudo: pallet_sudo = 15, - Multisig: pallet_multisig = 16, - // Collator support. The order of these 4 are important and shall not change. + // Collator Support. The order of these 4 are important and shall not change. Authorship: pallet_authorship = 20, CollatorSelection: pallet_collator_selection = 21, Session: pallet_session = 22, Aura: pallet_aura = 23, AuraExt: cumulus_pallet_aura_ext = 24, - // XCM helpers. + // XCM Helpers XcmpQueue: cumulus_pallet_xcmp_queue = 30, PolkadotXcm: pallet_xcm = 31, CumulusXcm: cumulus_pallet_xcm = 32,