Skip to content

Commit 4f427a8

Browse files
authored
Merge pull request #3507 from DFXswiss/develop
Release: develop -> main
2 parents 43a1bdb + 9b94820 commit 4f427a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/subdomains/supporting/log/log-job.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ export class LogJobService {
386386
(b) => b.accountIban === yapealChfBank.iban && b.creditDebitIndicator === BankTxIndicator.DEBIT,
387387
);
388388
const chfReceiverScryptExchangeTx = recentScryptExchangeTx.filter(
389-
(k) => k.type === ExchangeTxType.DEPOSIT && k.status !== 'failed' && k.currency === 'CHF',
389+
(k) => k.type === ExchangeTxType.DEPOSIT && k.status === 'ok' && k.currency === 'CHF',
390390
);
391391

392392
// sender and receiver data
@@ -416,7 +416,7 @@ export class LogJobService {
416416
b.instructedCurrency,
417417
);
418418
const eurReceiverScryptExchangeTx = recentScryptExchangeTx.filter(
419-
(k) => k.type === ExchangeTxType.DEPOSIT && k.status !== 'failed' && k.currency === 'EUR',
419+
(k) => k.type === ExchangeTxType.DEPOSIT && k.status === 'ok' && k.currency === 'EUR',
420420
);
421421

422422
// CHF: Scrypt -> Yapeal

0 commit comments

Comments
 (0)