group pallets in a consistent way for documentation (#101)

* group pallets in a consistent way for documentation

* move multisig and proxy to system support
This commit is contained in:
Özgün Özerk
2024-01-15 19:06:26 +03:00
committed by GitHub
parent e811fe1468
commit bccaf4ef2c
+6 -5
View File
@@ -620,31 +620,32 @@ impl pallet_utility::Config for Runtime {
construct_runtime!( construct_runtime!(
pub enum Runtime pub enum Runtime
{ {
// System support stuff. // System Support
System: frame_system = 0, System: frame_system = 0,
ParachainSystem: cumulus_pallet_parachain_system = 1, ParachainSystem: cumulus_pallet_parachain_system = 1,
Timestamp: pallet_timestamp = 2, Timestamp: pallet_timestamp = 2,
ParachainInfo: parachain_info = 3, ParachainInfo: parachain_info = 3,
Proxy: pallet_proxy = 4, Proxy: pallet_proxy = 4,
Utility: pallet_utility = 5, Utility: pallet_utility = 5,
Multisig: pallet_multisig = 6,
// Monetary stuff.
// Monetary
Balances: pallet_balances = 10, Balances: pallet_balances = 10,
TransactionPayment: pallet_transaction_payment = 11, TransactionPayment: pallet_transaction_payment = 11,
Assets: pallet_assets = 12, Assets: pallet_assets = 12,
// Governance // Governance
Sudo: pallet_sudo = 15, 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, Authorship: pallet_authorship = 20,
CollatorSelection: pallet_collator_selection = 21, CollatorSelection: pallet_collator_selection = 21,
Session: pallet_session = 22, Session: pallet_session = 22,
Aura: pallet_aura = 23, Aura: pallet_aura = 23,
AuraExt: cumulus_pallet_aura_ext = 24, AuraExt: cumulus_pallet_aura_ext = 24,
// XCM helpers. // XCM Helpers
XcmpQueue: cumulus_pallet_xcmp_queue = 30, XcmpQueue: cumulus_pallet_xcmp_queue = 30,
PolkadotXcm: pallet_xcm = 31, PolkadotXcm: pallet_xcm = 31,
CumulusXcm: cumulus_pallet_xcm = 32, CumulusXcm: cumulus_pallet_xcm = 32,