lnsocket

A minimal C library for connecting to the lightning network
git clone git://jb55.com/lnsocket
Log | Files | Refs | Submodules | README | LICENSE

commit 8e73835f1c35e5e326972e6469a9690dc03ccad9
parent 35e8d296845d33949c0ee1b5c53965cf927cc859
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 14 Mar 2022 10:57:04 -0700

js: add lnsocket_init to Module export

Diffstat:
Mlnsocket_lib.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lnsocket_lib.js b/lnsocket_lib.js @@ -272,4 +272,4 @@ async function lnsocket_init() { return LNSocket } -Module.init = lnsocket_init +Module.init = Module.lnsocket_init = lnsocket_init