Call found transactions only when there are some

- I observed on a client side that foundTransations event is called with 0 transactions. This change prevents from doing so.
This commit is contained in:
Lukas Korba 2025-01-31 09:48:00 +01:00
parent 255c52996e
commit c6a234ff6e
1 changed files with 5 additions and 1 deletions

View File

@ -250,6 +250,8 @@ public class SDKSynchronizer: Synchronizer {
}
private func foundTransactions(transactions: [ZcashTransaction.Overview], in range: CompactBlockRange) {
guard !transactions.isEmpty else { return }
streamsUpdateQueue.async { [weak self] in
self?.eventSubject.send(.foundTransactions(transactions, range))
}
@ -380,7 +382,9 @@ public class SDKSynchronizer: Synchronizer {
var submitFailed = false
// let clients know the transaction repository changed
eventSubject.send(.foundTransactions(transactions, nil))
if !transactions.isEmpty {
eventSubject.send(.foundTransactions(transactions, nil))
}
return AsyncThrowingStream() {
guard let transaction = iterator.next() else { return nil }