Skip to content

Commit 1a18e66

Browse files
chedieckFabcien
authored andcommitted
fix: one network at a time
1 parent 5fec2a5 commit 1a18e66

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

services/chronikService.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,10 +1156,8 @@ class MultiBlockchainClient {
11561156

11571157
public async syncMissedTransactions (): Promise<void> {
11581158
await this.waitForStart()
1159-
await Promise.all([
1160-
this.clients.ecash.syncMissedTransactions(),
1161-
this.clients.bitcoincash.syncMissedTransactions()
1162-
])
1159+
await this.clients.ecash.syncMissedTransactions()
1160+
await this.clients.bitcoincash.syncMissedTransactions()
11631161
}
11641162

11651163
public async syncAndSubscribeAddresses (addresses: Address[]): Promise<SyncAndSubscriptionReturn> {

0 commit comments

Comments
 (0)