commit 2cf6ce6e11327a1b25ebd6837e8451abfe37eb27 parent 13ca3685a3bd5d916822ab58e41474c0bca2e4d4 Author: William Casarin <jb55@jb55.com> Date: Fri, 24 May 2019 13:50:24 -0700 updates Diffstat:
M | Makefile | | | 2 | +- |
M | README.md | | | 4 | +++- |
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ BIN = clightning-dumpkeys PREFIX ?= /usr/local LDFLAGS = -lsecp256k1 -CFLAGS = $(DEFS) -Og -g -I src -Wall -Werror -Wextra -std=c99 +CFLAGS = $(DEFS) -O2 -g -I src -Wall -Werror -Wextra -std=c99 OBJS = sha256.o OBJS += sha512.o diff --git a/README.md b/README.md @@ -5,8 +5,10 @@ Dump xpubs and xprvs from your clightning node ## usage - ./clightning-dumpkeys ~/.lightning/hsm_secret + $ ./clightning-dumpkeys ~/.lightning/hsm_secret ## building You need to have the `secp256k1` library installed for this to compile + + $ make