difftreelog
chore remove unique-scheduler leftovers
in: master
10 files changed
Cargo.tomldiffbeforeafterboth1[workspace]1[workspace]2default-members = ['client/*', 'node/*', 'runtime/opal']2default-members = ['client/*', 'node/*', 'runtime/opal']3exclude = ['pallets/scheduler-v2']4members = [3members = [5 'client/*',4 'client/*',6 'crates/*',5 'crates/*',54pallet-structure = { default-features = false, path = "pallets/structure" }53pallet-structure = { default-features = false, path = "pallets/structure" }55pallet-test-utils = { default-features = false, path = "test-pallets/utils" }54pallet-test-utils = { default-features = false, path = "test-pallets/utils" }56pallet-unique = { path = "pallets/unique", default-features = false }55pallet-unique = { path = "pallets/unique", default-features = false }57# pallet-unique-scheduler-v2 = { path = "pallets/scheduler-v2", default-features = false }58precompile-utils-macro = { path = "runtime/common/ethereum/precompiles/utils/macro" }56precompile-utils-macro = { path = "runtime/common/ethereum/precompiles/utils/macro" }59struct-versioning = { path = "crates/struct-versioning" }57struct-versioning = { path = "crates/struct-versioning" }60uc-rpc = { path = "client/rpc" }58uc-rpc = { path = "client/rpc" }Makefilediffbeforeafterboth128bench-structure:128bench-structure:129 make _bench PALLET=structure129 make _bench PALLET=structure130131.PHONY: bench-scheduler132bench-scheduler:133 make _bench PALLET=unique-scheduler-v2 PALLET_DIR=scheduler-v2134130135.PHONY: bench-foreign-assets131.PHONY: bench-foreign-assets136bench-foreign-assets:132bench-foreign-assets:157 make _bench PALLET=xcm OUTPUT=./runtime/common/weights/xcm.rs TEMPLATE="--template=.maintain/external-weight-template.hbs"153 make _bench PALLET=xcm OUTPUT=./runtime/common/weights/xcm.rs TEMPLATE="--template=.maintain/external-weight-template.hbs"158154159.PHONY: bench155.PHONY: bench160# Disabled: bench-scheduler161bench: bench-app-promotion bench-common bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-configuration bench-foreign-assets bench-maintenance bench-xcm bench-collator-selection bench-identity156bench: bench-app-promotion bench-common bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-configuration bench-foreign-assets bench-maintenance bench-xcm bench-collator-selection bench-identity162157163.PHONY: check158.PHONY: checkruntime/common/config/pallets/mod.rsdiffbeforeafterboth40 Balances, Runtime, RuntimeCall, RuntimeEvent, DECIMALS, TOKEN_SYMBOL, VERSION,40 Balances, Runtime, RuntimeCall, RuntimeEvent, DECIMALS, TOKEN_SYMBOL, VERSION,41};41};4243#[cfg(feature = "unique-scheduler")]44pub mod scheduler;454246#[cfg(feature = "foreign-assets")]43#[cfg(feature = "foreign-assets")]47pub mod foreign_asset;44pub mod foreign_asset;runtime/common/config/pallets/scheduler.rsdiffbeforeafterbothno changes
runtime/common/maintenance.rsdiffbeforeafterboth67 | RuntimeCall::Structure(_)67 | RuntimeCall::Structure(_)68 | RuntimeCall::Unique(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),68 | RuntimeCall::Unique(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),6970 #[cfg(feature = "unique-scheduler")]71 RuntimeCall::Scheduler(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),726973 #[cfg(feature = "app-promotion")]70 #[cfg(feature = "app-promotion")]74 RuntimeCall::AppPromotion(_) => {71 RuntimeCall::AppPromotion(_) => {runtime/common/mod.rsdiffbeforeafterboth23pub mod maintenance;23pub mod maintenance;24pub mod runtime_apis;24pub mod runtime_apis;2526#[cfg(feature = "unique-scheduler")]27pub mod scheduler;282529pub mod sponsoring;26pub mod sponsoring;30#[allow(missing_docs)]27#[allow(missing_docs)]runtime/common/runtime_apis.rsdiffbeforeafterboth548 #[cfg(feature = "refungible")]548 #[cfg(feature = "refungible")]549 list_benchmark!(list, extra, pallet_refungible, Refungible);549 list_benchmark!(list, extra, pallet_refungible, Refungible);550551 #[cfg(feature = "unique-scheduler")]552 list_benchmark!(list, extra, pallet_unique_scheduler_v2, Scheduler);553550554 #[cfg(feature = "collator-selection")]551 #[cfg(feature = "collator-selection")]555 list_benchmark!(list, extra, pallet_collator_selection, CollatorSelection);552 list_benchmark!(list, extra, pallet_collator_selection, CollatorSelection);614 #[cfg(feature = "refungible")]611 #[cfg(feature = "refungible")]615 add_benchmark!(params, batches, pallet_refungible, Refungible);612 add_benchmark!(params, batches, pallet_refungible, Refungible);616617 #[cfg(feature = "unique-scheduler")]618 add_benchmark!(params, batches, pallet_unique_scheduler_v2, Scheduler);619613620 #[cfg(feature = "collator-selection")]614 #[cfg(feature = "collator-selection")]621 add_benchmark!(params, batches, pallet_collator_selection, CollatorSelection);615 add_benchmark!(params, batches, pallet_collator_selection, CollatorSelection);runtime/opal/Cargo.tomldiffbeforeafterboth229preimage = []229preimage = []230refungible = []230refungible = []231session-test-timings = []231session-test-timings = []232unique-scheduler = []233232234################################################################################233################################################################################235# local dependencies234# local dependenciesruntime/quartz/Cargo.tomldiffbeforeafterboth221preimage = []221preimage = []222refungible = []222refungible = []223session-test-timings = []223session-test-timings = []224unique-scheduler = []225224226################################################################################225################################################################################227# local dependencies226# local dependenciesruntime/unique/Cargo.tomldiffbeforeafterboth224preimage = []224preimage = []225refungible = []225refungible = []226session-test-timings = []226session-test-timings = []227unique-scheduler = []228227229################################################################################228################################################################################230# local dependencies229# local dependencies