From dd359036608e68fba173116d618e055fc1ba3f6c Mon Sep 17 00:00:00 2001 From: LLFourn Date: Tue, 24 Nov 2020 12:40:58 +1100 Subject: [PATCH] Remove trait bounds on Wallet struct see: https://github.com/rust-lang/api-guidelines/issues/6 --- src/wallet/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/mod.rs b/src/wallet/mod.rs index 9b4f4448..f817d641 100644 --- a/src/wallet/mod.rs +++ b/src/wallet/mod.rs @@ -84,7 +84,7 @@ pub type OfflineWallet = Wallet; /// A wallet can be either "online" if the [`blockchain`](crate::blockchain) type provided /// implements [`Blockchain`], or "offline" [`OfflineBlockchain`] is used. Offline wallets only expose /// methods that don't need any interaction with the blockchain to work. -pub struct Wallet { +pub struct Wallet { descriptor: ExtendedDescriptor, change_descriptor: Option,