diff --git a/polkadot/runtime/test-runtime/src/lib.rs b/polkadot/runtime/test-runtime/src/lib.rs index 8a4e1cb994e74..b6bf41a96e716 100644 --- a/polkadot/runtime/test-runtime/src/lib.rs +++ b/polkadot/runtime/test-runtime/src/lib.rs @@ -552,7 +552,7 @@ impl parachains_paras::Config for Runtime { type OnNewHead = (); type AssignCoretime = (); type UnbrickOrigin = EnsureRoot; - type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOUR }>; + type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOURS }>; } parameter_types! { diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 8000fee5250f8..92baacc9b43fb 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -35,10 +35,10 @@ use frame_support::{ genesis_builder_helper::{build_state, get_preset}, parameter_types, traits::{ - fungible::HoldConsideration, tokens::UnityOrOuterConversion, ConstU32, Contains, EitherOf, - EitherOfDiverse, EnsureOriginWithArg, EverythingBut, FromContains, InstanceFilter, - KeyOwnerProofSystem, LinearStoragePrice, ProcessMessage, ProcessMessageError, - VariantCountOf, WithdrawReasons, + fungible::HoldConsideration, tokens::UnityOrOuterConversion, ConstU32, ConstU64, Contains, + EitherOf, EitherOfDiverse, EnsureOriginWithArg, EverythingBut, FromContains, + InstanceFilter, KeyOwnerProofSystem, LinearStoragePrice, ProcessMessage, + ProcessMessageError, VariantCountOf, WithdrawReasons, }, weights::{ConstantMultiplier, WeightMeter, WeightToFee as _}, PalletId, @@ -1211,7 +1211,7 @@ impl parachains_paras::Config for Runtime { type OnNewHead = (); type AssignCoretime = CoretimeAssignmentProvider; type UnbrickOrigin = EnsureRoot; - type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOUR }>; + type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOURS }>; } parameter_types! {