Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/esplora/src/async_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ where
let mut update = TxUpdate::<ConfirmationBlockTime>::default();

// make sure txs exists in graph and tx statuses are updated
// TODO: We should maintain a tx cache (like we do with Electrum).
// Note: Esplora GET /scripthash/:hash/txs already returns full transactions, so a tx cache is not required.
update.extend(
fetch_txs_with_txids(
client,
Expand Down
2 changes: 1 addition & 1 deletion crates/esplora/src/blocking_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ fn fetch_txs_with_outpoints<I: IntoIterator<Item = OutPoint>>(
let mut update = TxUpdate::<ConfirmationBlockTime>::default();

// make sure txs exists in graph and tx statuses are updated
// TODO: We should maintain a tx cache (like we do with Electrum).
// Note: Esplora GET /scripthash/:hash/txs already returns full transactions, so a tx cache is not required.
update.extend(fetch_txs_with_txids(
client,
start_time,
Expand Down