diff --git a/runtime/common/src/pallets_config.rs b/runtime/common/src/pallets_config.rs index 04426b32bb319d2022647c4257db020b17087fce..98f4a99b331ff8d61e71f9157ef259b20c100de8 100644 --- a/runtime/common/src/pallets_config.rs +++ b/runtime/common/src/pallets_config.rs @@ -84,17 +84,6 @@ macro_rules! pallets_config { BlockWeights::get().max_block; pub const MaxScheduledPerBlock: u32 = 50; } - /// Used the compare the privilege of an origin inside the scheduler. - pub struct OriginPrivilegeCmp; - impl frame_support::traits::PrivilegeCmp<OriginCaller> for OriginPrivilegeCmp { - fn cmp_privilege(left: &OriginCaller, right: &OriginCaller) -> Option<core::cmp::Ordering> { - if left == right { - Some(core::cmp::Ordering::Equal) - } else { - None - } - } - } impl pallet_scheduler::Config for Runtime { type Event = Event; type Origin = Origin; @@ -102,7 +91,7 @@ macro_rules! pallets_config { type Call = Call; type MaximumWeight = MaximumSchedulerWeight; type ScheduleOrigin = frame_system::EnsureSigned<AccountId>; - type OriginPrivilegeCmp = OriginPrivilegeCmp; + type OriginPrivilegeCmp = EqualPrivilegeOnly; type MaxScheduledPerBlock = MaxScheduledPerBlock; type WeightInfo = pallet_scheduler::weights::SubstrateWeight<Runtime>; type PreimageProvider = (); diff --git a/runtime/g1/src/lib.rs b/runtime/g1/src/lib.rs index 782745a6ade3d2ef25ab4b21716f6101077629be..6ab4dcb8af6530fe1703eadbd5847f0c96cfb39c 100644 --- a/runtime/g1/src/lib.rs +++ b/runtime/g1/src/lib.rs @@ -60,7 +60,7 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ construct_runtime, parameter_types, - traits::{KeyOwnerProofSystem, Randomness}, + traits::{EqualPrivilegeOnly, KeyOwnerProofSystem, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, Weight, WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial, diff --git a/runtime/gdev/src/lib.rs b/runtime/gdev/src/lib.rs index af414220e5c6a5ace42c4309585700555bf80d0b..cf561427abd6202938b739a0e5d6b32956240f45 100644 --- a/runtime/gdev/src/lib.rs +++ b/runtime/gdev/src/lib.rs @@ -61,7 +61,7 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ construct_runtime, parameter_types, - traits::{KeyOwnerProofSystem, Randomness}, + traits::{EqualPrivilegeOnly, KeyOwnerProofSystem, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, Weight, WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial, diff --git a/runtime/gtest/src/lib.rs b/runtime/gtest/src/lib.rs index 3815715b86a2d1d1a66a20e98ebb5ac0d532dd60..179d226908ed856a9113a89619b9495b3a7542cf 100644 --- a/runtime/gtest/src/lib.rs +++ b/runtime/gtest/src/lib.rs @@ -60,7 +60,7 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ construct_runtime, parameter_types, - traits::{KeyOwnerProofSystem, Randomness}, + traits::{EqualPrivilegeOnly, KeyOwnerProofSystem, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, Weight, WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial,