Skip to content

Commit 19fef83

Browse files
Update from github-actions[bot] running command 'fmt'
1 parent 59ed133 commit 19fef83

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

substrate/client/rpc-spec-v2/src/archive/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
//! API trait of the archive methods.
2020
2121
use crate::{
22+
archive::error::{Error, Infallible},
2223
common::events::{
2324
ArchiveStorageDiffEvent, ArchiveStorageDiffItem, ArchiveStorageEvent, StorageQuery,
2425
},
2526
MethodResult,
26-
archive::error::{Error, Infallible},
2727
};
2828
use jsonrpsee::proc_macros::rpc;
2929

substrate/client/rpc-spec-v2/src/archive/archive.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
2121
use crate::{
2222
archive::{
23-
archive_storage::ArchiveStorageDiff, error::{Error as ArchiveError, Infallible}, ArchiveApiServer,
23+
archive_storage::ArchiveStorageDiff,
24+
error::{Error as ArchiveError, Infallible},
25+
ArchiveApiServer,
2426
},
2527
common::{
2628
events::{
@@ -33,10 +35,7 @@ use crate::{
3335

3436
use codec::Encode;
3537
use futures::FutureExt;
36-
use jsonrpsee::{
37-
core::async_trait,
38-
PendingSubscriptionSink,
39-
};
38+
use jsonrpsee::{core::async_trait, PendingSubscriptionSink};
4039
use sc_client_api::{
4140
Backend, BlockBackend, BlockchainEvents, CallExecutor, ChildInfo, ExecutorProvider, StorageKey,
4241
StorageProvider,

0 commit comments

Comments
 (0)