diff --git a/bridges/snowbridge/pallets/ethereum-client/src/lib.rs b/bridges/snowbridge/pallets/ethereum-client/src/lib.rs index 7863faaebe3b..c6fe0c8116ac 100644 --- a/bridges/snowbridge/pallets/ethereum-client/src/lib.rs +++ b/bridges/snowbridge/pallets/ethereum-client/src/lib.rs @@ -183,19 +183,16 @@ pub mod pallet { /// Sync committee for current period #[pallet::storage] - pub type CurrentSyncCommittee = - StorageValue<_, SyncCommitteePrepared, ValueQuery>; + pub type CurrentSyncCommittee = StorageValue<_, SyncCommitteePrepared, ValueQuery>; /// Sync committee for next period #[pallet::storage] - pub type NextSyncCommittee = - StorageValue<_, SyncCommitteePrepared, ValueQuery>; + pub type NextSyncCommittee = StorageValue<_, SyncCommitteePrepared, ValueQuery>; /// Latest imported execution header #[pallet::storage] #[pallet::getter(fn latest_execution_state)] - pub type LatestExecutionState = - StorageValue<_, ExecutionHeaderState, ValueQuery>; + pub type LatestExecutionState = StorageValue<_, ExecutionHeaderState, ValueQuery>; /// Execution Headers #[pallet::storage]