From aae06c680f7d31d0a2f2a2059b57a8d7c575d3c7 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 8 Sep 2020 21:03:10 +0530 Subject: DB tweaks --- packages/taler-wallet-core/src/operations/exchanges.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/taler-wallet-core/src/operations/exchanges.ts') diff --git a/packages/taler-wallet-core/src/operations/exchanges.ts b/packages/taler-wallet-core/src/operations/exchanges.ts index 7bf07ab2a..d598e3987 100644 --- a/packages/taler-wallet-core/src/operations/exchanges.ts +++ b/packages/taler-wallet-core/src/operations/exchanges.ts @@ -222,7 +222,7 @@ async function updateExchangeWithKeys( for (const newDenom of newDenominations) { const oldDenom = await tx.get(Stores.denominations, [ baseUrl, - newDenom.denomPub, + newDenom.denomPubHash, ]); if (oldDenom) { // FIXME: Do consistency check @@ -236,10 +236,10 @@ async function updateExchangeWithKeys( const newlyRevokedCoinPubs: string[] = []; logger.trace("recoup list from exchange", recoupDenomList); for (const recoupInfo of recoupDenomList) { - const oldDenom = await tx.getIndexed( - Stores.denominations.denomPubHashIndex, + const oldDenom = await tx.get(Stores.denominations, [ + r.baseUrl, recoupInfo.h_denom_pub, - ); + ]); if (!oldDenom) { // We never even knew about the revoked denomination, all good. continue; -- cgit v1.2.3