From 59178331a46467e0eb6f4dc0331f8d52d9afcb3c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 15 May 2020 17:23:49 +0530 Subject: show withdrawal transaction continuously --- src/operations/transactions.ts | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) (limited to 'src/operations/transactions.ts') diff --git a/src/operations/transactions.ts b/src/operations/transactions.ts index 20adf320e..5602c6b04 100644 --- a/src/operations/transactions.ts +++ b/src/operations/transactions.ts @@ -166,25 +166,19 @@ export async function getTransactions( return; } - if (transactionsRequest?.search) - if (wsr.rawWithdrawalAmount.currency) - if (wsr.timestampFinish) { - transactions.push({ - type: TransactionType.Withdrawal, - amountEffective: Amounts.stringify( - wsr.denomsSel.totalCoinValue, - ), - amountRaw: Amounts.stringify(wsr.denomsSel.totalWithdrawCost), - confirmed: true, - exchangeBaseUrl: wsr.exchangeBaseUrl, - pending: !wsr.timestampFinish, - timestamp: wsr.timestampStart, - transactionId: makeEventId( - TransactionType.Withdrawal, - wsr.withdrawalGroupId, - ), - }); - } + transactions.push({ + type: TransactionType.Withdrawal, + amountEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue), + amountRaw: Amounts.stringify(wsr.denomsSel.totalWithdrawCost), + confirmed: true, + exchangeBaseUrl: wsr.exchangeBaseUrl, + pending: !wsr.timestampFinish, + timestamp: wsr.timestampStart, + transactionId: makeEventId( + TransactionType.Withdrawal, + wsr.withdrawalGroupId, + ), + }); }); tx.iter(Stores.reserves).forEach((r) => { @@ -194,8 +188,13 @@ export async function getTransactions( if (shouldSkipSearch(transactionsRequest, [])) { return; } - if (r.reserveStatus !== ReserveRecordStatus.WAIT_CONFIRM_BANK) { - return; + switch (r.reserveStatus) { + case ReserveRecordStatus.WAIT_CONFIRM_BANK: + break; + case ReserveRecordStatus.WITHDRAWING: + break; + default: + return; } if (!r.bankInfo) { return; -- cgit v1.2.3