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:
parent
255c52996e
commit
c6a234ff6e
|
@ -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 }
|
||||
|
|
Loading…
Reference in New Issue