taler-typescript-core

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

commit de96059ad067cc4a28518db47d27889107b22232
parent d985c0ba04d06ebc9c584c2e17bed68350d82136
Author: Florian Dold <florian@dold.me>
Date:   Mon, 27 May 2024 21:48:49 +0200

wallet-core: rethrow exception

Diffstat:
Mpackages/taler-wallet-core/src/common.ts | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/packages/taler-wallet-core/src/common.ts b/packages/taler-wallet-core/src/common.ts @@ -819,5 +819,6 @@ export async function genericWaitForState( } catch (e) { unregisterOnCancelled(); cancelNotif(); + throw e; } }