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 9217ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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
2 changes: 1 addition & 1 deletion polkadot/runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
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 9217ce2

Please sign in to comment.