git.delta.rocks / unique-network / refs/commits / ee51bae74a12

difftreelog

feat give explicit ids to all pallets

Yaroslav Bolyukin2021-07-27parent: #bc09443.patch.diff
in: master

1 file changed

modifiedruntime/src/lib.rsdiffbeforeafterboth
777 NodeBlock = opaque::Block,777 NodeBlock = opaque::Block,
778 UncheckedExtrinsic = UncheckedExtrinsic778 UncheckedExtrinsic = UncheckedExtrinsic
779 {779 {
780 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event<T>} = 20,
781 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,
782
783 Aura: pallet_aura::{Pallet, Config<T>} = 22,
784 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 23,
785
780 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,786 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,
781 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>},
782 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage},787 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,
783 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent},788 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,
784 TransactionPayment: pallet_transaction_payment::{Pallet, Storage},789 TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33,
785 Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>},790 Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 34,
786 Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>},791 Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>} = 35,
787 System: system::{Pallet, Call, Storage, Config, Event<T>},792 System: system::{Pallet, Call, Storage, Config, Event<T>} = 36,
788 Vesting: pallet_vesting::{Pallet, Call, Config<T>, Storage, Event<T>},793 Vesting: pallet_vesting::{Pallet, Call, Config<T>, Storage, Event<T>} = 37,
789794 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,
790 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event<T>} = 20,
791 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,
792
793 Aura: pallet_aura::{Pallet, Config<T>},
794 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config},
795
796 // Frontier
797 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>},
798 Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, ValidateUnsigned},
799795
800 // XCM helpers.796 // XCM helpers.
801 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,797 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,
805
806801
807 // Unique Pallets802 // Unique Pallets
808 Inflation: pallet_inflation::{Pallet, Call, Storage},803 Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,
809 Nft: pallet_nft::{Pallet, Call, Config<T>, Storage, Event<T>},804 Nft: pallet_nft::{Pallet, Call, Config<T>, Storage, Event<T>} = 61,
810 Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>},805 Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>} = 62,
811 NftPayment: pallet_nft_transaction_payment::{Pallet, Call, Storage},806 NftPayment: pallet_nft_transaction_payment::{Pallet, Call, Storage} = 63,
812 Charging: pallet_nft_charge_transaction::{Pallet, Call, Storage },807 Charging: pallet_nft_charge_transaction::{Pallet, Call, Storage } = 64,
813 // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage},808 // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage} = 65,
809
810 // Frontier
811 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,
812 Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, ValidateUnsigned} = 101,
813
814 EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,
815 EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage, Event<T>} = 151,
816 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,
814 }817 }
815);818);
816819