From 323cf60765b83b27b19327443ed7c77b48c10273 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Tue, 27 Aug 2024 11:55:06 +0200 Subject: [PATCH] reduce mbm service weight --- runtime/astar/src/lib.rs | 2 +- runtime/shibuya/src/lib.rs | 2 +- runtime/shiden/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/astar/src/lib.rs b/runtime/astar/src/lib.rs index 5fce846d5e..44a66d3597 100644 --- a/runtime/astar/src/lib.rs +++ b/runtime/astar/src/lib.rs @@ -1190,7 +1190,7 @@ impl frame_support::traits::SortedMembers for OracleMembershipWrapper } parameter_types! { - pub MbmServiceWeight: Weight = Perbill::from_percent(80) * RuntimeBlockWeights::get().max_block; + pub MbmServiceWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; } impl pallet_migrations::Config for Runtime { diff --git a/runtime/shibuya/src/lib.rs b/runtime/shibuya/src/lib.rs index a9ac17147a..1d472cb30a 100644 --- a/runtime/shibuya/src/lib.rs +++ b/runtime/shibuya/src/lib.rs @@ -1515,7 +1515,7 @@ impl pallet_collective_proxy::Config for Runtime { } parameter_types! { - pub MbmServiceWeight: Weight = Perbill::from_percent(80) * RuntimeBlockWeights::get().max_block; + pub MbmServiceWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; } impl pallet_migrations::Config for Runtime { diff --git a/runtime/shiden/src/lib.rs b/runtime/shiden/src/lib.rs index 71f67e9503..5b3b7067a1 100644 --- a/runtime/shiden/src/lib.rs +++ b/runtime/shiden/src/lib.rs @@ -1189,7 +1189,7 @@ impl frame_support::traits::SortedMembers for OracleMembershipWrapper } parameter_types! { - pub MbmServiceWeight: Weight = Perbill::from_percent(80) * RuntimeBlockWeights::get().max_block; + pub MbmServiceWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; } impl pallet_migrations::Config for Runtime {