diff --git a/runtimes/eden/src/lib.rs b/runtimes/eden/src/lib.rs index cb6e4b57e0a..5a457cd5609 100644 --- a/runtimes/eden/src/lib.rs +++ b/runtimes/eden/src/lib.rs @@ -421,9 +421,6 @@ sp_api::impl_runtime_apis! { fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig, ) -> Result, sp_runtime::RuntimeString> { - // We did not include the offences and sessions benchmarks as they are parity - // specific and were causing some issues at compile time as they depend on the - // presence of the staking and elections pallets. use cumulus_primitives_core::{Fungibility::Fungible, MultiAsset, MultiLocation, Parent}; use frame_benchmarking::{Benchmarking, BenchmarkBatch,BenchmarkError}; diff --git a/runtimes/eden/src/pallets_parachain.rs b/runtimes/eden/src/pallets_parachain.rs index 451fcd35d06..6fabe822f97 100644 --- a/runtimes/eden/src/pallets_parachain.rs +++ b/runtimes/eden/src/pallets_parachain.rs @@ -40,12 +40,6 @@ parameter_types! { pub MessageQueueServiceWeight: Weight = Perbill::from_percent(35) * RuntimeBlockWeights::get().max_block; } -// impl cumulus_pallet_dmp_queue::Config for Runtime { -// type RuntimeEvent = RuntimeEvent; -// type DmpSink = frame_support::traits::EnqueueWithOrigin; -// type WeightInfo = (); // TODO check this () -// } - impl pallet_message_queue::Config for Runtime { type RuntimeEvent = RuntimeEvent; type WeightInfo = (); @@ -80,9 +74,6 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type XcmpMessageHandler = XcmpQueue; type ReservedXcmpWeight = (); type CheckAssociatedRelayNumber = RelayNumberStrictlyIncreases; - // TODO cleanup and check - // type DmpQueue = frame_support::traits::EnqueueWithOrigin; - // type DmpQueue = frame_support::traits::EnqueueWithOrigin<(), sp_core::ConstU8<0>>; type DmpQueue = frame_support::traits::EnqueueWithOrigin; type WeightInfo = (); }