From b84292787f3b7291b79a1a096a9fc6e5ba33045c Mon Sep 17 00:00:00 2001 From: Praveen Perera Date: Thu, 15 Aug 2024 11:22:37 -0500 Subject: [PATCH] feat(wallet): Derive Clone on AddressInfo --- crates/wallet/src/wallet/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.49.0