Skip to content

Commit

Permalink
fix fmt and clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Sep 30, 2024
1 parent acf7bdc commit fc368d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ pub mod bindgen;
#[cfg(feature = "wasm")]
pub use bindgen::wallet::WebWallet;


pub mod error;
pub mod init;


pub mod wallet;
pub use wallet::Wallet;

Expand Down
4 changes: 2 additions & 2 deletions src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ impl<W, T: Clone> Clone for Wallet<W, T> {
Self {
db: self.db.clone(),
client: self.client.clone(),
network: self.network.clone(),
min_confirmations: self.min_confirmations.clone(),
network: self.network,
min_confirmations: self.min_confirmations,
}
}
}
Expand Down

0 comments on commit fc368d8

Please sign in to comment.