From 38e6d519461cff32107b5eebfc217fd9276960db Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 1 Sep 2020 23:01:44 +0530 Subject: estimate refresh output, show correct(er) balance --- packages/taler-wallet-core/src/operations/withdraw.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packages/taler-wallet-core/src/operations/withdraw.ts') diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index c68f1521f..c719f7ab8 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -67,7 +67,11 @@ import { encodeCrock } from "../crypto/talerCrypto"; const logger = new Logger("withdraw.ts"); -function isWithdrawableDenom(d: DenominationRecord): boolean { +/** + * Check if a denom is withdrawable based on the expiration time + * and revocation state. + */ +export function isWithdrawableDenom(d: DenominationRecord): boolean { const now = getTimestampNow(); const started = timestampCmp(now, d.stampStart) >= 0; const lastPossibleWithdraw = timestampSubtractDuraction( -- cgit v1.2.3