mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
a4f92eac81
We stopped doing empty journal logs, so we no longer need to switch our log severity based on whether or not an account exists. Should make bookkeeper less chatty and remove noisy logs Changelog-None
12 lines
265 B
C
12 lines
265 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);
|
|
|
|
#endif /* LIGHTNING_PLUGINS_BKPR_DB_H */
|