daemon/config: add testnet.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2016-01-22 06:41:49 +10:30
parent d303393d67
commit 24602459b1
2 changed files with 6 additions and 0 deletions

View File

@@ -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;

View File

@@ -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;