From 582479e98c11bc9efb8c720a5461d0380e437751 Mon Sep 17 00:00:00 2001 From: muharem Date: Wed, 23 Jul 2025 12:25:07 +0200 Subject: [PATCH] with async backing --- relay/polkadot/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/relay/polkadot/src/lib.rs b/relay/polkadot/src/lib.rs index 9e986cc188..8ef9152813 100644 --- a/relay/polkadot/src/lib.rs +++ b/relay/polkadot/src/lib.rs @@ -1694,10 +1694,9 @@ impl OnSwap for SwapLeases { } } -// TODO: @muharem adjust when async backing enabled for Polkadot Asset Hub // Derived from `polkadot_asset_hub_runtime::RuntimeBlockWeights`. const AH_MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts( - frame_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), + frame_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), polkadot_primitives::MAX_POV_SIZE as u64, );