Skip to content

Commit bb9974c

Browse files
committed
chore: fmt
1 parent 5656021 commit bb9974c

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

crates/rpc/src/server/api.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -540,13 +540,11 @@ fn endpoint_limits(params: &[(&str, usize)]) -> proto::rpc::EndpointLimits {
540540

541541
/// Cached RPC query parameter limits.
542542
static RPC_LIMITS: LazyLock<proto::rpc::RpcLimits> = LazyLock::new(|| {
543-
use {
544-
QueryParamAccountIdLimit as AccountId,
545-
QueryParamNoteIdLimit as NoteId,
546-
QueryParamNoteTagLimit as NoteTag,
547-
QueryParamNullifierLimit as Nullifier,
548-
QueryParamStorageMapKeyTotalLimit as StorageMapKeyTotal,
549-
};
543+
use QueryParamAccountIdLimit as AccountId;
544+
use QueryParamNoteIdLimit as NoteId;
545+
use QueryParamNoteTagLimit as NoteTag;
546+
use QueryParamNullifierLimit as Nullifier;
547+
use QueryParamStorageMapKeyTotalLimit as StorageMapKeyTotal;
550548

551549
proto::rpc::RpcLimits {
552550
endpoints: std::collections::HashMap::from([

0 commit comments

Comments
 (0)