From c121eb875eb05b5fb49bd5583b6fcd4da8180879 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 25 Nov 2022 12:12:14 -0300 Subject: [PATCH] fix: ageRestriction option was missing --- packages/taler-wallet-core/src/wallet.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index 5ad86dfe8..2167de534 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -100,6 +100,7 @@ import { WalletCoreVersion, WalletNotification, codecForUserAttentionByIdRequest, + ManualWithdrawalDetails, } from "@gnu-taler/taler-util"; import { TalerCryptoInterface } from "./crypto/cryptoImplementation.js"; import { @@ -1091,12 +1092,14 @@ async function dispatchRequestInternal( Amounts.parseOrThrow(req.amount), req.restrictAge, ); - return { + const resp: ManualWithdrawalDetails = { amountRaw: req.amount, amountEffective: Amounts.stringify(wi.selectedDenoms.totalCoinValue), paytoUris: wi.exchangePaytoUris, tosAccepted: wi.termsOfServiceAccepted, + ageRestrictionOptions: wi.ageRestrictionOptions, }; + return resp; } case WalletApiOperation.GetBalances: { return await getBalances(ws);