diff options
author | Florian Dold <florian@dold.me> | 2023-06-30 16:29:35 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2023-06-30 16:29:35 +0200 |
commit | e0d4f7e4af81686ff719448b86512accc89d7ac3 (patch) | |
tree | 04fbe9ca5112e942c3501626f2c10fa6fd29a65c /packages | |
parent | d4ee96138774e8bc469f172bbb6276af89d6f240 (diff) |
wallet-core: properly make coins visible after refresh
Diffstat (limited to 'packages')
-rw-r--r-- | packages/taler-wallet-core/src/operations/refresh.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/refresh.ts b/packages/taler-wallet-core/src/operations/refresh.ts index caa5f9c9f..65346a923 100644 --- a/packages/taler-wallet-core/src/operations/refresh.ts +++ b/packages/taler-wallet-core/src/operations/refresh.ts @@ -761,6 +761,7 @@ async function refreshReveal( for (const coin of coins) { await makeCoinAvailable(ws, tx, coin); } + await makeCoinsVisible(ws, tx, transactionId); await tx.refreshGroups.put(rg); }); logger.trace("refresh finished (end of reveal)"); |