Anakun
Anakun
I will create 6 more PR to fix the last 6 test that fails that I added. This PR is strictly for only patching the fromBits method.
Hey, sorry, I will make the rest of the PRs as soon as possible, I am pretty busy this week but should have some time this weekend
See https://github.com/MaxGraey/as-bignum/pull/90
After some more investigation, I can confirm that this is the problem, I have recompiled napi from source and removed the entire custom_gc function. The program no longer segfault. After...
Will try it asap, I need to make it compatible with NAPI 3.
Hey @Brooooooklyn, I have converted my vm to napi3 and im having a problem and I dont understand what is happening. It's coming from napi3. when calling a threadsafe function...
Hey @Brooooooklyn yes. You can easily replicate the problem by following these specific steps: 1. Create a folder 2. Clone https://github.com/btc-vision/op-vm/tree/merge/napi3 make sure that you are in the branch merge/napi3...
Good news. I located the cause of the Ok(). The problem raise from threadsafe_function.rs Here is the code that have a problem: ```rust if let ThreadsafeFunctionCallVariant::WithCallback = call_variant { //...
If I do ```rust if let ThreadsafeFunctionCallVariant::WithCallback = call_variant { // throw Error in JavaScript callback let callback_arg = if status == sys::Status::napi_pending_exception { let mut exception = ptr::null_mut(); unsafe...
On an other note, once I applied this patch & corrected the js error I can run my unit tests. One observation that I have already is: It hangs for...