Skip to content

Commit fc368d8

Browse files
committed
fix fmt and clippy
1 parent acf7bdc commit fc368d8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ pub mod bindgen;
88
#[cfg(feature = "wasm")]
99
pub use bindgen::wallet::WebWallet;
1010

11-
1211
pub mod error;
1312
pub mod init;
1413

15-
1614
pub mod wallet;
1715
pub use wallet::Wallet;
1816

src/wallet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ impl<W, T: Clone> Clone for Wallet<W, T> {
8080
Self {
8181
db: self.db.clone(),
8282
client: self.client.clone(),
83-
network: self.network.clone(),
84-
min_confirmations: self.min_confirmations.clone(),
83+
network: self.network,
84+
min_confirmations: self.min_confirmations,
8585
}
8686
}
8787
}

0 commit comments

Comments
 (0)