Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrrnn committed Aug 6, 2024
1 parent f619d9c commit 5c07cbf
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ use crate::mm_proxy_manager::MmProxyManager;
use crate::node_manager::NodeManager;
use crate::wallet_adapter::WalletBalance;
use crate::wallet_manager::WalletManager;
use dirs_next::data_dir;
use futures_util::{FutureExt, TryFutureExt};
use log::{debug, error, info, warn};
use binary_resolver::{Binaries, BinaryResolver};
use futures_util::TryFutureExt;
use log::{debug, error, info, warn};
use serde::{Deserialize, Serialize};
use std::sync::Arc;
Expand All @@ -37,9 +34,9 @@ use std::{panic, process};
use tari_common_types::tari_address::TariAddress;
use tari_core::transactions::tari_amount::MicroMinotari;
use tari_shutdown::Shutdown;
use tauri::{api, RunEvent, UpdaterEvent};
use tauri::{RunEvent, UpdaterEvent};
use tokio::sync::RwLock;
use tokio::{join, try_join};
use tokio::try_join;

use std::thread;
use std::time::Duration;
Expand Down

0 comments on commit 5c07cbf

Please sign in to comment.