core-lightning/plugins/bkpr/db.h
Rusty Russell 2971b2af79 bkpr: insert obscure 60s pop references.
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>
2022-08-01 09:01:08 -07:00

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