commit 2dcd3c12b280ef35b5acfedb44377c160653092a
parent 1946a5d76f0717d311121dacc48940f4a5d4f051
Author: Florian Dold <florian@dold.me>
Date: Fri, 30 Jun 2023 23:47:35 +0200
Revert "taler-wallet-core lib: add comments from today's session"
This reverts commit 1946a5d76f0717d311121dacc48940f4a5d4f051.
Diffstat:
2 files changed, 2 insertions(+), 16 deletions(-)
diff --git 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);
diff --git a/taler_wallet_core_lib.h b/taler_wallet_core_lib.h
@@ -55,11 +55,6 @@ TALER_WALLET_set_message_handler(struct TALER_WALLET_Instance *twi,
TALER_WALLET_MessageHandlerFn handler_f,
void *handler_p);
-void
-TALER_WALLET_set_anastasis_response_handler(struct TALER_WALLET_Instance *twi,
- TALER_WALLET_AnastasisResponseHandlerFn handler_f,
- void *handler_p);
-
/**
* Set/override the JS file with the wallet-core implementation.
@@ -80,10 +75,6 @@ int
TALER_WALLET_send_request(struct TALER_WALLET_Instance *twi,
const char *request);
-int
-TALER_WALLET_anastasis_reduce(struct TALER_WALLET_Instance *twi,
- const char *request);
-
/**
* Run wallet-core in a thread.
*