Browse Source

daemon/config: add testnet.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 9 years ago
parent
commit
24602459b1
  1. 3
      daemon/lightningd.c
  2. 3
      daemon/lightningd.h

3
daemon/lightningd.c

@ -87,6 +87,9 @@ static void config_register_opts(struct lightningd_state *state)
static void default_config(struct config *config)
{
/* aka. "Dude, where's my coins?" */
config->testnet = true;
/* One day to catch cheating attempts. */
config->rel_locktime = 60 * 60 * 24;

3
daemon/lightningd.h

@ -10,6 +10,9 @@
/* Various adjustable things. */
struct config {
/* Are we on testnet? */
bool testnet;
/* How long do we want them to lock up their funds? (seconds) */
u32 rel_locktime;

Loading…
Cancel
Save