lnsocket

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

commit 13aabae3f844a63247997ed3d2e33db15f103adf
parent 70918a6940fafd9539c94f28fd539a84806af8fa
Author: William Casarin <jb55@jb55.com>
Date:   Wed,  9 Mar 2022 07:51:09 -0800

rename rpc.c -> lnrpc.c

Diffstat:
MMakefile | 4++--
MREADME | 2+-
Rrpc.c -> lnrpc.c | 0
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -142,9 +142,9 @@ test: test.o $(DEPS) $(ARS) @echo "ld test" @$(CC) $(CFLAGS) test.o $(OBJS) $(ARS) $(LDFLAGS) -o $@ -lnrpc: rpc.o $(DEPS) $(ARS) +lnrpc: lnrpc.o $(DEPS) $(ARS) @echo "ld lnrpc" - @$(CC) $(CFLAGS) rpc.o $(OBJS) $(ARS) $(LDFLAGS) -o $@ + @$(CC) $(CFLAGS) lnrpc.o $(OBJS) $(ARS) $(LDFLAGS) -o $@ lnsocket_module.js: $(WASM_ARS) lnsocket_pre.js emcc --pre-js lnsocket_pre.js -s ENVIRONMENT=web -s MODULARIZE -s EXPORTED_RUNTIME_METHODS=ccall,cwrap $(CFLAGS) -Wl,-whole-archive $(WASM_ARS) -Wl,-no-whole-archive -o $@ diff --git a/README b/README @@ -53,7 +53,7 @@ Examples * See test.c for a ping/pong example -* See rpc.c for an RPC example +* See lnrpc.c for an RPC example Contributing ------------ diff --git a/rpc.c b/lnrpc.c