Skip to content

Commit

Permalink
feat(wallet): Derive Clone on AddressInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Aug 20, 2024
1 parent e0822d7 commit b842927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wallet/src/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ impl From<SyncResult> 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,
Expand Down

0 comments on commit b842927

Please sign in to comment.