Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pandres95 committed Aug 21, 2024
1 parent 36981f9 commit e25eac3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion polkadot/runtime/test-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ impl parachains_paras::Config for Runtime {
type OnNewHead = ();
type AssignCoretime = ();
type UnbrickOrigin = EnsureRoot<AccountId>;
type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOUR }>;
type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOURS }>;
}

parameter_types! {
Expand Down
10 changes: 5 additions & 5 deletions polkadot/runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -1211,7 +1211,7 @@ impl parachains_paras::Config for Runtime {
type OnNewHead = ();
type AssignCoretime = CoretimeAssignmentProvider;
type UnbrickOrigin = EnsureRoot<AccountId>;
type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOUR }>;
type MinTimeToAllowUnbrick = ConstU64<{ 2 * HOURS }>;
}

parameter_types! {
Expand Down

0 comments on commit e25eac3

Please sign in to comment.