Pass new transactions to the event stream

- When a proposal is correct and new transactions are prepared to be submitted, we're letting know clients about those asap.
This commit is contained in:
Lukas Korba 2025-01-30 13:53:04 +01:00
parent d125050810
commit 255c52996e
2 changed files with 4 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public enum SynchronizerEvent {
case minedTransaction(ZcashTransaction.Overview)
// Sent when the synchronizer finds a mined transaction
case foundTransactions(_ transactions: [ZcashTransaction.Overview], _ inRange: CompactBlockRange)
case foundTransactions(_ transactions: [ZcashTransaction.Overview], _ inRange: CompactBlockRange?)
// Sent when the synchronizer fetched utxos from lightwalletd attempted to store them.
case storedUTXOs(_ inserted: [UnspentTransactionOutputEntity], _ skipped: [UnspentTransactionOutputEntity])
// Connection state to LightwalletEndpoint changed.

View File

@ -379,6 +379,9 @@ public class SDKSynchronizer: Synchronizer {
var iterator = transactions.makeIterator()
var submitFailed = false
// let clients know the transaction repository changed
eventSubject.send(.foundTransactions(transactions, nil))
return AsyncThrowingStream() {
guard let transaction = iterator.next() else { return nil }