difftreelog
chore remove unique-scheduler leftovers
in: master
10 files changed
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,5 @@
[workspace]
default-members = ['client/*', 'node/*', 'runtime/opal']
-exclude = ['pallets/scheduler-v2']
members = [
'client/*',
'crates/*',
@@ -54,7 +53,6 @@
pallet-structure = { default-features = false, path = "pallets/structure" }
pallet-test-utils = { default-features = false, path = "test-pallets/utils" }
pallet-unique = { path = "pallets/unique", default-features = false }
-# pallet-unique-scheduler-v2 = { path = "pallets/scheduler-v2", default-features = false }
precompile-utils-macro = { path = "runtime/common/ethereum/precompiles/utils/macro" }
struct-versioning = { path = "crates/struct-versioning" }
uc-rpc = { path = "client/rpc" }
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -128,10 +128,6 @@
bench-structure:
make _bench PALLET=structure
-.PHONY: bench-scheduler
-bench-scheduler:
- make _bench PALLET=unique-scheduler-v2 PALLET_DIR=scheduler-v2
-
.PHONY: bench-foreign-assets
bench-foreign-assets:
make _bench PALLET=foreign-assets
@@ -157,7 +153,6 @@
make _bench PALLET=xcm OUTPUT=./runtime/common/weights/xcm.rs TEMPLATE="--template=.maintain/external-weight-template.hbs"
.PHONY: bench
-# Disabled: bench-scheduler
bench: 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-identity
.PHONY: check
runtime/common/config/pallets/mod.rsdiffbeforeafterboth--- a/runtime/common/config/pallets/mod.rs
+++ b/runtime/common/config/pallets/mod.rs
@@ -40,9 +40,6 @@
Balances, Runtime, RuntimeCall, RuntimeEvent, DECIMALS, TOKEN_SYMBOL, VERSION,
};
-#[cfg(feature = "unique-scheduler")]
-pub mod scheduler;
-
#[cfg(feature = "foreign-assets")]
pub mod foreign_asset;
runtime/common/config/pallets/scheduler.rsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617use core::cmp::Ordering;1819use frame_support::{20 parameter_types,21 traits::{EnsureOrigin, PrivilegeCmp},22 weights::Weight,23};24use frame_system::{EnsureRoot, RawOrigin};25use pallet_unique_scheduler_v2::ScheduledEnsureOriginSuccess;26use parity_scale_codec::Decode;27use sp_runtime::Perbill;28use up_common::types::AccountId;2930use crate::{31 runtime_common::{config::substrate::RuntimeBlockWeights, scheduler::SchedulerPaymentExecutor},32 OriginCaller, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin,33};3435parameter_types! {36 pub MaximumSchedulerWeight: Weight = Perbill::from_percent(50) *37 RuntimeBlockWeights::get().max_block;38 pub const MaxScheduledPerBlock: u32 = 50;3940 pub const NoPreimagePostponement: Option<u32> = Some(10);41 pub const Preimage: Option<u32> = Some(10);42}4344pub struct EnsureSignedOrRoot<AccountId>(sp_std::marker::PhantomData<AccountId>);45impl<O: Into<Result<RawOrigin<AccountId>, O>> + From<RawOrigin<AccountId>>, AccountId: Decode>46 EnsureOrigin<O> for EnsureSignedOrRoot<AccountId>47{48 type Success = ScheduledEnsureOriginSuccess<AccountId>;49 fn try_origin(o: O) -> Result<Self::Success, O> {50 o.into().and_then(|o| match o {51 RawOrigin::Root => Ok(ScheduledEnsureOriginSuccess::Root),52 RawOrigin::Signed(who) => Ok(ScheduledEnsureOriginSuccess::Signed(who)),53 r => Err(O::from(r)),54 })55 }56}5758pub struct EqualOrRootOnly;59impl PrivilegeCmp<OriginCaller> for EqualOrRootOnly {60 fn cmp_privilege(left: &OriginCaller, right: &OriginCaller) -> Option<Ordering> {61 use RawOrigin::*;6263 let left = left.clone().try_into().ok()?;64 let right = right.clone().try_into().ok()?;6566 match (left, right) {67 (Root, Root) => Some(Ordering::Equal),68 (Root, _) => Some(Ordering::Greater),69 (_, Root) => Some(Ordering::Less),70 lr @ _ => (lr.0 == lr.1).then(|| Ordering::Equal),71 }72 }73}7475impl pallet_unique_scheduler_v2::Config for Runtime {76 type RuntimeEvent = RuntimeEvent;77 type RuntimeOrigin = RuntimeOrigin;78 type PalletsOrigin = OriginCaller;79 type RuntimeCall = RuntimeCall;80 type MaximumWeight = MaximumSchedulerWeight;81 type ScheduleOrigin = EnsureSignedOrRoot<AccountId>;82 type OriginPrivilegeCmp = EqualOrRootOnly;83 type MaxScheduledPerBlock = MaxScheduledPerBlock;84 type WeightInfo = ();85 type Preimages = ();86 type CallExecutor = SchedulerPaymentExecutor;87 type PrioritySetOrigin = EnsureRoot<AccountId>;88}runtime/common/maintenance.rsdiffbeforeafterboth--- a/runtime/common/maintenance.rs
+++ b/runtime/common/maintenance.rs
@@ -67,9 +67,6 @@
| RuntimeCall::Structure(_)
| RuntimeCall::Unique(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
- #[cfg(feature = "unique-scheduler")]
- RuntimeCall::Scheduler(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
-
#[cfg(feature = "app-promotion")]
RuntimeCall::AppPromotion(_) => {
Err(TransactionValidityError::Invalid(InvalidTransaction::Call))
runtime/common/mod.rsdiffbeforeafterboth--- a/runtime/common/mod.rs
+++ b/runtime/common/mod.rs
@@ -23,9 +23,6 @@
pub mod maintenance;
pub mod runtime_apis;
-#[cfg(feature = "unique-scheduler")]
-pub mod scheduler;
-
pub mod sponsoring;
#[allow(missing_docs)]
pub mod weights;
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -548,9 +548,6 @@
#[cfg(feature = "refungible")]
list_benchmark!(list, extra, pallet_refungible, Refungible);
- #[cfg(feature = "unique-scheduler")]
- list_benchmark!(list, extra, pallet_unique_scheduler_v2, Scheduler);
-
#[cfg(feature = "collator-selection")]
list_benchmark!(list, extra, pallet_collator_selection, CollatorSelection);
@@ -613,9 +610,6 @@
#[cfg(feature = "refungible")]
add_benchmark!(params, batches, pallet_refungible, Refungible);
-
- #[cfg(feature = "unique-scheduler")]
- add_benchmark!(params, batches, pallet_unique_scheduler_v2, Scheduler);
#[cfg(feature = "collator-selection")]
add_benchmark!(params, batches, pallet_collator_selection, CollatorSelection);
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -229,7 +229,6 @@
preimage = []
refungible = []
session-test-timings = []
-unique-scheduler = []
################################################################################
# local dependencies
runtime/quartz/Cargo.tomldiffbeforeafterboth--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -221,7 +221,6 @@
preimage = []
refungible = []
session-test-timings = []
-unique-scheduler = []
################################################################################
# local dependencies
runtime/unique/Cargo.tomldiffbeforeafterboth--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -224,7 +224,6 @@
preimage = []
refungible = []
session-test-timings = []
-unique-scheduler = []
################################################################################
# local dependencies