Skip to content
Snippets Groups Projects
Commit e7220d01 authored by Éloïs's avatar Éloïs
Browse files

fixed pallets index

parent 6360df9c
No related branches found
No related tags found
1 merge request!9upgrade substrate to monthly-2022-01
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
...@@ -156,18 +156,34 @@ construct_runtime!( ...@@ -156,18 +156,34 @@ construct_runtime!(
NodeBlock = common_runtime::Block, NodeBlock = common_runtime::Block,
UncheckedExtrinsic = UncheckedExtrinsic UncheckedExtrinsic = UncheckedExtrinsic
{ {
System: frame_system::{Pallet, Call, Config, Storage, Event<T>}, // Basic stuff
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage}, System: frame_system::{Pallet, Call, Config, Storage, Event<T>} = 0,
Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, //Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>} = 1,
Aura: pallet_aura::{Pallet, Config<T>},
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event}, // Must be before session.
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>}, Aura: pallet_aura::{Pallet, Config<T>} = 2,
TransactionPayment: pallet_transaction_payment::{Pallet, Storage},
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>}, Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 3,
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage}, Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 5,
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>}, TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 32,
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>},
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>}, // Consensus support.
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event} = 10,
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 11,
// Governance stuff.
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>} = 20,
// Cunning utilities.
//Utility: pallet_utility::{Pallet, Call, Event} = 30,
// Universal dividend.
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage} = 40,
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>} = 41,
// Web Of Trust
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>} = 50,
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>} = 51,
} }
); );
......
...@@ -153,17 +153,33 @@ construct_runtime!( ...@@ -153,17 +153,33 @@ construct_runtime!(
NodeBlock = common_runtime::Block, NodeBlock = common_runtime::Block,
UncheckedExtrinsic = UncheckedExtrinsic UncheckedExtrinsic = UncheckedExtrinsic
{ {
System: frame_system::{Pallet, Call, Config, Storage, Event<T>}, // Basic stuff
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage}, System: frame_system::{Pallet, Call, Config, Storage, Event<T>} = 0,
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event}, //Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>} = 1,
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
Multisig: pallet_multisig::{Pallet, Call, Storage, Event<T>}, Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 5,
TransactionPayment: pallet_transaction_payment::{Pallet, Storage}, TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 32,
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>},
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage}, // Consensus support.
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>}, Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event} = 10,
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>}, RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 11,
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>},
// Governance stuff.
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>} = 20,
// Cunning utilities.
//Utility: pallet_utility::{Pallet, Call, Event} = 30,
// Universal dividend.
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage} = 40,
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>} = 41,
// Web Of Trust
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>} = 50,
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>} = 51,
// Multisig dispatch.
Multisig: pallet_multisig::{Pallet, Call, Storage, Event<T>} = 60,
} }
); );
......
...@@ -156,18 +156,34 @@ construct_runtime!( ...@@ -156,18 +156,34 @@ construct_runtime!(
NodeBlock = common_runtime::Block, NodeBlock = common_runtime::Block,
UncheckedExtrinsic = UncheckedExtrinsic UncheckedExtrinsic = UncheckedExtrinsic
{ {
System: frame_system::{Pallet, Call, Config, Storage, Event<T>}, // Basic stuff
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage}, System: frame_system::{Pallet, Call, Config, Storage, Event<T>} = 0,
Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, //Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>} = 1,
Aura: pallet_aura::{Pallet, Config<T>},
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event}, // Must be before session.
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>}, Aura: pallet_aura::{Pallet, Config<T>} = 2,
TransactionPayment: pallet_transaction_payment::{Pallet, Storage},
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>}, Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 3,
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage}, Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 5,
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>}, TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 32,
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>},
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>}, // Consensus support.
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event} = 10,
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 11,
// Governance stuff.
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>} = 20,
// Cunning utilities.
//Utility: pallet_utility::{Pallet, Call, Event} = 30,
// Universal dividend.
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage} = 40,
UniversalDividend: pallet_universal_dividend::{Pallet, Config<T>, Storage, Event<T>} = 41,
// Web Of Trust
Identity: pallet_identity::{Pallet, Call, Config<T>, Storage, Event<T>} = 50,
StrongCert: pallet_certification::<Instance1>::{Pallet, Call, Config<T>, Storage, Event<T>} = 51,
} }
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment