File tree Expand file tree Collapse file tree
src/subdomains/supporting/log Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments