A few of the methods seem to create problems on the native side of things. Here is an example of an error I get:
❯ ./kldk
Hello, thundernode!
Kldk ❯❯❯ startnode
Kldk starting...
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGILL (0x4) at pc=0x0000000131a289ad, pid=41586, tid=11523
#
# JRE version: OpenJDK Runtime Environment Temurin-11.0.14+9 (11.0.14+9) (build 11.0.14+9)
# Java VM: OpenJDK 64-Bit Server VM Temurin-11.0.14+9 (11.0.14+9, mixed mode, tiered, compressed oops, g1 gc, bsd-amd64)
# Problematic frame:
# C [liblightningjni.so+0x1d69ad] NetworkGraph_new+0xd
#
# No core dump will be written. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /Users/tb/repos/k-ldk-node/app/build/install/kldk/bin/hs_err_pid41586.log
#
# If you would like to submit a bug report, please visit:
# https://github.com/adoptium/adoptium-support/issues
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
zsh: abort ./kldk
To reproduce, simply fire up the kdlk node here on an M1 and run the startnode command.
The error above happens at the networkGraph initialization step, but commenting that out allows us to find similar errors happening on the userConfig or the transactionFilter steps:
# Problematic frame:
# C [liblightningjni.so+0x272078] UserConfig_default+0x28
# Problematic frame:
# C [liblightningjni.so+0x4028c7] COption_FilterZ_some+0x7
A few of the methods seem to create problems on the native side of things. Here is an example of an error I get:
To reproduce, simply fire up the
kdlknode here on an M1 and run thestartnodecommand.The error above happens at the
networkGraphinitialization step, but commenting that out allows us to find similar errors happening on theuserConfigor thetransactionFiltersteps: