We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fec2a5 commit 1a18e66Copy full SHA for 1a18e66
1 file changed
services/chronikService.ts
@@ -1156,10 +1156,8 @@ class MultiBlockchainClient {
1156
1157
public async syncMissedTransactions (): Promise<void> {
1158
await this.waitForStart()
1159
- await Promise.all([
1160
- this.clients.ecash.syncMissedTransactions(),
1161
- this.clients.bitcoincash.syncMissedTransactions()
1162
- ])
+ await this.clients.ecash.syncMissedTransactions()
+ await this.clients.bitcoincash.syncMissedTransactions()
1163
}
1164
1165
public async syncAndSubscribeAddresses (addresses: Address[]): Promise<SyncAndSubscriptionReturn> {
0 commit comments