mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 07:04:22 +01:00
For future reference, done via: for f in `find wire/ bitcoin/ common/ lightningd -name '*.h' ! -name 'gen*'`; do ID=`echo -n LIGHTNING/$f | tr 'a-z' 'A-Z' | tr -cs 'A-Z0-9' _`; sed 's/^#\(ifndef\|define\) .*_H$/#\1 '$ID/ < $f | sed 's,#endif /..*_H ./$,#endif /* '$ID' */,' | bagto $f; done Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
37 lines
841 B
C
37 lines
841 B
C
#ifndef LIGHTNING_LIGHTNINGD_INVOICE_H
|
|
#define LIGHTNING_LIGHTNINGD_INVOICE_H
|
|
#include "config.h"
|
|
#include <bitcoin/preimage.h>
|
|
#include <ccan/crypto/sha256/sha256.h>
|
|
#include <ccan/list/list.h>
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct invoices;
|
|
struct lightningd_state;
|
|
|
|
struct invoice {
|
|
struct list_node list;
|
|
const char *label;
|
|
u64 msatoshi;
|
|
struct preimage r;
|
|
struct sha256 rhash;
|
|
u64 paid_num;
|
|
};
|
|
|
|
#define INVOICE_MAX_LABEL_LEN 128
|
|
|
|
/* From database */
|
|
void invoice_add(struct invoices *i,
|
|
const struct preimage *r,
|
|
u64 msatoshi,
|
|
const char *label,
|
|
u64 complete);
|
|
|
|
void resolve_invoice(struct lightningd_state *dstate, struct invoice *invoice);
|
|
|
|
struct invoice *find_unpaid(struct invoices *i,
|
|
const struct sha256 *rhash);
|
|
|
|
struct invoices *invoices_init(const tal_t *ctx);
|
|
#endif /* LIGHTNING_LIGHTNINGD_INVOICE_H */
|