summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/recoup.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-09-01 23:01:44 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-09-01 23:01:44 +0530
commit38e6d519461cff32107b5eebfc217fd9276960db (patch)
treeacae414baba420cfbb859af63c00370cc0baf3d1 /packages/taler-wallet-core/src/operations/recoup.ts
parent5f3d9835fa1d6174da87da3882221d186f5df1b6 (diff)
downloadwallet-core-38e6d519461cff32107b5eebfc217fd9276960db.tar.gz
wallet-core-38e6d519461cff32107b5eebfc217fd9276960db.tar.bz2
wallet-core-38e6d519461cff32107b5eebfc217fd9276960db.zip
estimate refresh output, show correct(er) balance
Diffstat (limited to 'packages/taler-wallet-core/src/operations/recoup.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/recoup.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/recoup.ts b/packages/taler-wallet-core/src/operations/recoup.ts
index 7896fc275..0e4ce18d3 100644
--- a/packages/taler-wallet-core/src/operations/recoup.ts
+++ b/packages/taler-wallet-core/src/operations/recoup.ts
@@ -180,7 +180,7 @@ async function recoupWithdrawCoin(
// FIXME: verify that our expectations about the amount match
await ws.db.runWithWriteTransaction(
- [Stores.coins, Stores.reserves, Stores.recoupGroups],
+ [Stores.coins, Stores.denominations, Stores.reserves, Stores.recoupGroups],
async (tx) => {
const recoupGroup = await tx.get(Stores.recoupGroups, recoupGroupId);
if (!recoupGroup) {