From 4cfae8f5893d1fc6acec4d97c2d95be016f52064 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 6 Apr 2020 12:54:49 +0530 Subject: types --- src/operations/pending.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/operations') diff --git a/src/operations/pending.ts b/src/operations/pending.ts index b0bb9a7c3..106e5053c 100644 --- a/src/operations/pending.ts +++ b/src/operations/pending.ts @@ -38,6 +38,7 @@ import { import { TransactionHandle } from "../util/query"; import { InternalWalletState } from "./state"; import { getBalances, getBalancesInsideTransaction } from "./balance"; +import { ReserveType } from "../types/history"; function updateRetryDelay( oldDelay: Duration, @@ -149,7 +150,9 @@ async function gatherReservePending( ): Promise { // FIXME: this should be optimized by using an index for "onlyDue==true". await tx.iter(Stores.reserves).forEach((reserve) => { - const reserveType = reserve.bankWithdrawStatusUrl ? "taler-bank" : "manual"; + const reserveType = reserve.bankWithdrawStatusUrl + ? ReserveType.TalerBankWithdraw + : ReserveType.Manual; if (!reserve.retryInfo.active) { return; } -- cgit v1.2.3