aboutsummaryrefslogtreecommitdiff
path: root/taler_wallet_core_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'taler_wallet_core_lib.c')
-rw-r--r--taler_wallet_core_lib.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/taler_wallet_core_lib.c b/taler_wallet_core_lib.c
index bc1bef3..777793b 100644
--- a/taler_wallet_core_lib.c
+++ b/taler_wallet_core_lib.c
@@ -24,16 +24,9 @@
#include <unistd.h>
#include <string.h>
-// Compiled JavaScript byte code for the prelude,
-// i.e., functions to make wallet-core runnable under
-// the quickjs / qtart runtime.
extern const uint8_t qjsc_prelude[];
extern const uint32_t qjsc_prelude_size;
-// Compiled JavaScript for wallet-core,
-// compiled from taler-wallet-core-qjs.mjs
-// This code does (or rather will!)
-// also contain the anastasis functionality.
extern const uint8_t qjsc_wallet_core[];
extern const uint32_t qjsc_wallet_core_size;
@@ -146,12 +139,14 @@ run(void *cls)
js_std_init_handlers(wh->rt);
wh->ctx = JS_NewCustomContext(wh->rt);
+
if (!wh->ctx) {
fprintf(stderr, "qjs: cannot allocate JS context\n");
pthread_mutex_unlock(&wh->handle_mutex);
return NULL;
}
+
JS_SetHostPromiseRejectionTracker(wh->rt, js_std_promise_rejection_tracker,
NULL);