fn chain_transparent_tx_id_changes<C>(
    chain: Option<C>,
    addresses: &HashSet<Address>,
    finalized_tip_range: Option<RangeInclusive<Height>>,
    query_height_range: RangeInclusive<Height>
) -> Result<BTreeMap<TransactionLocation, Hash>, BoxError>
where C: AsRef<Chain>,
Expand description

Returns the extra transaction IDs for addresses in the non-finalized chain query_height_range, matching or overlapping the transaction IDs for the finalized_tip_range,

If the addresses do not exist in the non-finalized chain, returns an empty list.