From 1d2cd40dcd533bba3e509354d64b721c4cc850eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thoralf=20M=C3=BCller?= Date: Tue, 16 Apr 2024 10:35:09 +0200 Subject: [PATCH] Format --- bindings/wasm/src/wallet.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bindings/wasm/src/wallet.rs b/bindings/wasm/src/wallet.rs index 614205f152..626bf3711b 100644 --- a/bindings/wasm/src/wallet.rs +++ b/bindings/wasm/src/wallet.rs @@ -2,7 +2,8 @@ // SPDX-License-Identifier: Apache-2.0 #[cfg(feature = "wallet")] -use crate::{client::ClientMethodHandler, secret_manager::SecretManagerMethodHandler}; +use std::sync::Arc; + #[cfg(feature = "wallet")] use iota_sdk_bindings_core::{ call_wallet_method, @@ -13,14 +14,15 @@ use iota_sdk_bindings_core::{ Response, WalletMethod, WalletOptions, }; #[cfg(feature = "wallet")] -use std::sync::Arc; -#[cfg(feature = "wallet")] use tokio::sync::{ mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender}, Mutex, }; use wasm_bindgen::{prelude::wasm_bindgen, JsValue}; +#[cfg(feature = "wallet")] +use crate::{client::ClientMethodHandler, secret_manager::SecretManagerMethodHandler}; + #[cfg(feature = "wallet")] /// The Wallet method handler. #[wasm_bindgen(js_name = WalletMethodHandler)]