From: Praveen Perera Date: Thu, 15 Aug 2024 16:22:37 +0000 (-0500) Subject: feat(wallet): Derive Clone on AddressInfo X-Git-Tag: v1.0.0-beta.2~6^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/struct.Reject.html?a=commitdiff_plain;h=b84292787f3b7291b79a1a096a9fc6e5ba33045c;p=bdk feat(wallet): Derive Clone on AddressInfo --- diff --git a/crates/wallet/src/wallet/mod.rs b/crates/wallet/src/wallet/mod.rs index f98b16e9..f304e8a6 100644 --- a/crates/wallet/src/wallet/mod.rs +++ b/crates/wallet/src/wallet/mod.rs @@ -171,7 +171,7 @@ impl From for Update { /// A derived address and the index it was found at. /// For convenience this automatically derefs to `Address` -#[derive(Debug, PartialEq, Eq)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct AddressInfo { /// Child index of this address pub index: u32,