aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/withdraw.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/withdraw.ts')
-rw-r--r--packages/taler-wallet-core/src/withdraw.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/taler-wallet-core/src/withdraw.ts b/packages/taler-wallet-core/src/withdraw.ts
index 0597c051f..106bd93a4 100644
--- a/packages/taler-wallet-core/src/withdraw.ts
+++ b/packages/taler-wallet-core/src/withdraw.ts
@@ -2885,9 +2885,7 @@ export async function confirmWithdrawal(
const withdrawalGroup = await wex.db.runReadOnlyTx(
{ storeNames: ["withdrawalGroups"] },
async (tx) => {
- return await tx.withdrawalGroups.indexes.byTalerWithdrawUri.get(
- parsedTx.withdrawalGroupId,
- );
+ return await tx.withdrawalGroups.get(parsedTx.withdrawalGroupId);
},
);