commit c121eb875eb05b5fb49bd5583b6fcd4da8180879
parent e05ba843a061c8050648ce922f36ed3d8e1cf24a
Author: Sebastian <sebasjm@gmail.com>
Date: Fri, 25 Nov 2022 12:12:14 -0300
fix: ageRestriction option was missing
Diffstat:
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
@@ -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<Op extends WalletApiOperation>(
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);