Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoralf-M committed Apr 16, 2024
1 parent 8188e68 commit 1d2cd40
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions bindings/wasm/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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)]
Expand Down

0 comments on commit 1d2cd40

Please sign in to comment.