Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Jun 6, 2024
1 parent 4bdd2c6 commit eb02005
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bridges/snowbridge/pallets/ethereum-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
pub mod config;
pub mod functions;
pub mod impls;
pub mod migration;
pub mod types;
pub mod weights;
pub mod migration;

#[cfg(any(test, feature = "fuzzing"))]
pub mod mock;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,11 @@ parameter_types! {
impl pallet_migrations::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
#[cfg(not(feature = "runtime-benchmarks"))]
type Migrations =
snowbridge_pallet_ethereum_client::migration::EthereumExecutionHeaderCleanup<Runtime, crate::weights::snowbridge_pallet_ethereum_client::WeightInfo<Runtime>, ExecutionHeaderCount>;
type Migrations = snowbridge_pallet_ethereum_client::migration::EthereumExecutionHeaderCleanup<
Runtime,
crate::weights::snowbridge_pallet_ethereum_client::WeightInfo<Runtime>,
ExecutionHeaderCount,
>;
#[cfg(feature = "runtime-benchmarks")]
type Migrations = pallet_migrations::mock_helpers::MockedMigrations;
type CursorMaxLen = ConstU32<65_536>;
Expand Down

0 comments on commit eb02005

Please sign in to comment.