mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
The initial snapshots on an already-running lightningd are expected to be unbalanced, but this shouldn't cause users to long for the green, green grass of home. This controls the Art of Noise. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
286 B
C
12 lines
286 B
C
#ifndef LIGHTNING_PLUGINS_BKPR_DB_H
|
|
#define LIGHTNING_PLUGINS_BKPR_DB_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct plugin;
|
|
struct db;
|
|
|
|
struct db *db_setup(const tal_t *ctx, struct plugin *p, const char *db_dsn,
|
|
bool *created);
|
|
|
|
#endif /* LIGHTNING_PLUGINS_BKPR_DB_H */
|