mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
a56f2b25b0
We're going to want this for changing the default network. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
19 lines
602 B
C
19 lines
602 B
C
#ifndef LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#define LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
#include <common/configdir.h>
|
|
|
|
struct lightningd;
|
|
|
|
/* After this, early config file and cmdline options parsed. */
|
|
void handle_early_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
/* After this we're in the .lightning dir, and we've parsed all options */
|
|
void handle_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
/* Derive default color and alias from the pubkey. */
|
|
void setup_color_and_alias(struct lightningd *ld);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPTIONS_H */
|