commit fdbf4a2feaf90f59caf339743d4fdd1fa88f6b46
parent 1efe89c4a42c3614de4611a60efe65b16b742c85
Author: Florian Dold <florian@dold.me>
Date: Fri, 13 Mar 2026 12:43:24 +0100
wallet-core: missing write to object store in error path (fixes wallet-blocked-pay-peer-push)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/packages/taler-wallet-core/src/pay-peer-push-debit.ts b/packages/taler-wallet-core/src/pay-peer-push-debit.ts
@@ -632,6 +632,7 @@ async function processPeerPushDebitCreateReserve(
),
refreshReason: RefreshReason.PayPeerPush,
});
+ await h.update(rec);
return TaskRunResult.progress();
});
}