From c1d7409f15be49ba53dfed3b8b9f2df9912ddd65 Mon Sep 17 00:00:00 2001 From: Max Leibovich <138369969+max-zengo@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:13:17 +0300 Subject: [PATCH] apply cargo fmt --- demo-wallet/src/bitcoin/mod.rs | 1 - demo-wallet/src/ethereum/commands.rs | 1 - demo-wallet/src/main.rs | 4 ---- 3 files changed, 6 deletions(-) diff --git a/demo-wallet/src/bitcoin/mod.rs b/demo-wallet/src/bitcoin/mod.rs index e2c3992..e7c287a 100644 --- a/demo-wallet/src/bitcoin/mod.rs +++ b/demo-wallet/src/bitcoin/mod.rs @@ -27,7 +27,6 @@ use two_party_ecdsa::curv::elliptic::curves::traits::ECPoint; use two_party_ecdsa::curv::BigInt; use uuid::Uuid; - use client_lib::ecdsa; use client_lib::ecdsa::types::PrivateShare; use client_lib::Client; diff --git a/demo-wallet/src/ethereum/commands.rs b/demo-wallet/src/ethereum/commands.rs index 9347df2..47aba14 100644 --- a/demo-wallet/src/ethereum/commands.rs +++ b/demo-wallet/src/ethereum/commands.rs @@ -6,7 +6,6 @@ use crate::Settings; use clap::{Args, Subcommand}; use ethers::prelude::{Address, LocalWallet, Signer}; - use client_lib as GothamClient; #[derive(Args)] diff --git a/demo-wallet/src/main.rs b/demo-wallet/src/main.rs index 73d4ced..4d254c7 100644 --- a/demo-wallet/src/main.rs +++ b/demo-wallet/src/main.rs @@ -2,10 +2,6 @@ use crate::bitcoin::commands::*; use crate::ethereum::commands::*; use clap::{Parser, Subcommand}; - - - - use config::{Config, File}; use serde::Deserialize;