mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
c4c4768577
We want to access this in db migrations, which happen very early, but runes_init needs the db, creating a circular dependency which must be split. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
19 lines
572 B
C
19 lines
572 B
C
#ifndef LIGHTNING_LIGHTNINGD_RUNES_H
|
|
#define LIGHTNING_LIGHTNINGD_RUNES_H
|
|
#include "config.h"
|
|
|
|
struct rune;
|
|
|
|
/* Initialize ld->runes enough for rune_is_ours(): needs HSM. */
|
|
struct runes *runes_early_init(struct lightningd *ld);
|
|
|
|
/* Finish it: needs db. */
|
|
void runes_finish_init(struct runes *runes);
|
|
|
|
/* Is this rune one of ours? Needed for commando migration.
|
|
* Returns NULL if it is, or a string explaining (usually, "Not derived from master").
|
|
*/
|
|
const char *rune_is_ours(struct lightningd *ld, const struct rune *rune);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_RUNES_H */
|