taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit f73a545e0a126d33427184b699d3e0dfb97f4204
parent 1776039b6f6cb9c896810f01d37b63ddc7b6cbf0
Author: Florian Dold <dold@taler.net>
Date:   Thu,  3 Sep 2026 15:47:37 +0200

wallet-core: await the init-time database write probe

Diffstat:
Mpackages/taler-wallet-core/src/requests.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/requests.ts b/packages/taler-wallet-core/src/requests.ts @@ -994,7 +994,7 @@ async function handleSetWalletRunConfig( // case the DB is not writeable. try { await wex.runWalletDbTx(async (tx) => { - tx.upsertConfig({ + await tx.upsertConfig({ key: ConfigRecordKey.LastInitInfo, value: timestampProtocolToDb(TalerProtocolTimestamp.now()), });