Browse Source

hsmd: add debugging into io_loop.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
parent
commit
1398a208f8
  1. 1
      hsmd/Makefile
  2. 2
      hsmd/hsm.c

1
hsmd/Makefile

@ -29,6 +29,7 @@ HSMD_COMMON_OBJS := \
common/daemon_conn.o \
common/debug.o \
common/funding_tx.o \
common/io_debug.o \
common/key_derive.o \
common/msg_queue.o \
common/permute_tx.o \

2
hsmd/hsm.c

@ -16,6 +16,7 @@
#include <common/daemon_conn.h>
#include <common/debug.h>
#include <common/funding_tx.h>
#include <common/io_debug.h>
#include <common/status.h>
#include <common/utils.h>
#include <common/version.h>
@ -662,6 +663,7 @@ int main(int argc, char *argv[])
}
subdaemon_debug(argc, argv);
io_poll_override(debug_poll);
secp256k1_ctx = secp256k1_context_create(SECP256K1_CONTEXT_VERIFY
| SECP256K1_CONTEXT_SIGN);

Loading…
Cancel
Save