commit 79e520c4159ffb0f5a6e32487b0fd7c998470443 parent 5bbf41ce1c01497d3efe6db63fba1c3d4688c1a8 Author: Florian Dold <florian@dold.me> Date: Wed, 28 Jun 2023 11:18:03 +0200 wallet-core: only report balance-change when withdrawal finishes Diffstat:
| M | packages/taler-wallet-core/src/operations/withdraw.ts | | | 4 | ---- |
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -1130,10 +1130,6 @@ async function processPlanchetVerifyAndStoreCoin( await makeCoinAvailable(ws, tx, coin); return true; }); - - if (success) { - ws.notify({ type: NotificationType.BalanceChange }); - } } /**