commit 66ecbf769699444811bb899c7b932d302ce462f7 parent f8a100e00375758bb9e459c05a687277003e1999 Author: Florian Dold <florian@dold.me> Date: Sun, 27 Apr 2025 15:28:49 +0200 wallet-core: fix missing await Diffstat:
| M | packages/taler-wallet-core/src/pay-peer-push-debit.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/pay-peer-push-debit.ts b/packages/taler-wallet-core/src/pay-peer-push-debit.ts @@ -756,7 +756,7 @@ async function processPeerPushDebitAbortingDeletePurse( case HttpStatusCode.Conflict: throw Error("purse deletion conflict"); case HttpStatusCode.Forbidden: - ctx.failTransaction(resp.detail); + await ctx.failTransaction(resp.detail); return TaskRunResult.finished(); }