fixup! feat(engine): create engine rust package for detectors and orchestration

Seed TxGraph ownership state from all derived addresses, not just addresses discovered from transaction outputs. This makes is_ours() recognize every descriptor-derived address and preserves internal/change tagging separately.
This commit is contained in:
Renato Britto
2026-03-31 19:31:48 -03:00
parent 14ac5c80a1
commit ea6c90bf41
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -171,6 +171,7 @@ impl<'a, G: BlockchainGateway> AnalysisEngine<'a, G> {
utxos: utxo_entries,
transactions,
internal_addresses: HashSet::new(),
derived_addresses: HashSet::new(),
})
}
}