From d98d49aa58d59e6d428e5d024ba3f6ea0352ae2a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sat, 15 Oct 2022 16:25:44 +0200 Subject: wallet-core: address another DB FIXME --- packages/taler-wallet-core/src/operations/withdraw.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'packages/taler-wallet-core/src/operations') diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index 1520dfc0a..1113fb87a 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -433,7 +433,6 @@ async function processPlanchetGenerate( planchetStatus: PlanchetStatus.Pending, withdrawSig: r.withdrawSig, withdrawalGroupId: withdrawalGroup.withdrawalGroupId, - maxAge: withdrawalGroup.restrictAge ?? AgeRestriction.AGE_UNRESTRICTED, ageCommitmentProof: r.ageCommitmentProof, lastError: undefined, }; @@ -746,7 +745,7 @@ async function processPlanchetVerifyAndStoreCoin( reservePub: withdrawalGroup.reservePub, withdrawalGroupId: withdrawalGroup.withdrawalGroupId, }, - maxAge: planchet.maxAge, + maxAge: withdrawalGroup.restrictAge ?? AgeRestriction.AGE_UNRESTRICTED, ageCommitmentProof: planchet.ageCommitmentProof, spendAllocation: undefined, }; @@ -1360,7 +1359,10 @@ export async function getWithdrawalDetailsForUri( .runReadOnly(async (tx) => { const exchangeRecords = await tx.exchanges.iter().toArray(); for (const r of exchangeRecords) { - const exchangeDetails = await ws.exchangeOps.getExchangeDetails(tx, r.baseUrl); + const exchangeDetails = await ws.exchangeOps.getExchangeDetails( + tx, + r.baseUrl, + ); const denominations = await tx.denominations.indexes.byExchangeBaseUrl .iter(r.baseUrl) .toArray(); @@ -1372,7 +1374,9 @@ export async function getWithdrawalDetailsForUri( exchanges.push({ exchangeBaseUrl: exchangeDetails.exchangeBaseUrl, currency: exchangeDetails.currency, - paytoUris: exchangeDetails.wireInfo.accounts.map((x) => x.payto_uri), + paytoUris: exchangeDetails.wireInfo.accounts.map( + (x) => x.payto_uri, + ), tosStatus: getExchangeTosStatus(exchangeDetails), }); } -- cgit v1.2.3