fixup! refactor(model): convert core crate into model for types and interfaces

Tighten the derived_addresses doc comment to describe the field's purpose without referencing the Python implementation details.
This commit is contained in:
Renato Britto
2026-03-31 19:40:02 -03:00
parent ea6c90bf41
commit 27087de01d
+1 -2
View File
@@ -203,8 +203,7 @@ pub struct WalletHistory {
#[serde(default, with = "serde_addr_set")]
pub internal_addresses: HashSet<Address<NetworkUnchecked>>,
/// Every address derived from ALL wallet descriptors (external + internal).
/// Used by `TxGraph` to seed `our_addrs`, matching the Python reference
/// which uses `set(addr_map.keys())` over all derived addresses.
/// Used by `TxGraph` to seed `our_addrs`
#[serde(default, with = "serde_addr_set")]
pub derived_addresses: HashSet<Address<NetworkUnchecked>>,
}