core-lightning/plugins/bkpr/db.h
niftynei a4f92eac81 bkpr: now that we're not doing empty acct logging, we dont need this bool
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
2024-01-29 10:05:03 +10:30

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