difftreelog
build(collator-selection) switch to quartz
in: master
5 files changed
node/cli/src/chain_spec.rsdiffbeforeafterboth143 AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()143 AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()144}144}145145146#[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]146#[cfg(feature = "quartz-runtime")]147macro_rules! testnet_genesis {147macro_rules! testnet_genesis {148 (148 (149 $runtime:path,149 $runtime:path,207 }};207 }};208}208}209209210#[cfg(any(feature = "unique-runtime", feature = "quartz-runtime"))]210#[cfg(not(feature = "quartz-runtime"))]211macro_rules! testnet_genesis {211macro_rules! testnet_genesis {212 (212 (213 $runtime:path,213 $runtime:path,runtime/common/construct_runtime/mod.rsdiffbeforeafterboth32 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,32 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,33 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,33 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,343435 #[runtimes(opal)]35 #[runtimes(quartz)]36 Authorship: pallet_authorship::{Pallet, Call, Storage} = 22,36 Authorship: pallet_authorship::{Pallet, Call, Storage} = 22,373738 #[runtimes(opal)]38 #[runtimes(quartz)]39 CollatorSelection: pallet_collator_selection::{Pallet, Call, Storage, Event<T>, Config<T>} = 23,39 CollatorSelection: pallet_collator_selection::{Pallet, Call, Storage, Event<T>, Config<T>} = 23,404041 #[runtimes(opal)]41 #[runtimes(quartz)]42 Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 24,42 Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 24,434344 Aura: pallet_aura::{Pallet, Config<T>} = 25,44 Aura: pallet_aura::{Pallet, Config<T>} = 25,56 Tokens: orml_tokens = 39,56 Tokens: orml_tokens = 39,57 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,57 // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,585859 #[runtimes(opal)]59 #[runtimes(quartz)]60 Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 40,60 Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 40,616162 // XCM helpers.62 // XCM helpers.runtime/opal/Cargo.tomldiffbeforeafterboth193 'refungible',193 'refungible',194 'rmrk',194 'rmrk',195 'app-promotion',195 'app-promotion',196 'collator-selection',197 'foreign-assets',196 'foreign-assets',198 'pallet-test-utils',197 'pallet-test-utils',199]198]runtime/quartz/Cargo.tomldiffbeforeafterboth181 "pallet-maintenance/std",181 "pallet-maintenance/std",182]182]183limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']183limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']184quartz-runtime = ['refungible', 'app-promotion', 'foreign-assets']184quartz-runtime = ['refungible', 'app-promotion', 'collator-selection', 'foreign-assets']185pov-estimate = []185pov-estimate = []186186187refungible = []187refungible = []tests/src/pallet-presence.test.tsdiffbeforeafterboth76 appPromotion,76 appPromotion,77 testUtils,77 testUtils,78 ...rmrkPallets,78 ...rmrkPallets,79 ...collatorSelection,80 );79 );81 } else if (chain.eq('QUARTZ by UNIQUE')) {80 } else if (chain.eq('QUARTZ by UNIQUE')) {82 requiredPallets.push(81 requiredPallets.push(83 refungible,82 refungible,84 appPromotion,83 appPromotion,85 foreignAssets,84 foreignAssets,85 ...collatorSelection,86 );86 );87 } else if (chain.eq('UNIQUE')) {87 } else if (chain.eq('UNIQUE')) {88 // Insert Unique additional pallets here88 // Insert Unique additional pallets here