core-lightning/lightningd/runes.h
Rusty Russell c4c4768577 lightningd: initialize runes way earlier, and add rune_is_ours helper.
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>
2023-07-25 14:47:12 +09:30

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 */