mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
5027410ab1
A new 'accept-payment' command tells the node to fulfill HTLCs using the R value if the amount is correct. It's not wired in yet. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
19 lines
374 B
C
19 lines
374 B
C
#ifndef LIGHTNING_DAEMON_PAYMENT_H
|
|
#define LIGHTNING_DAEMON_PAYMENT_H
|
|
#include "config.h"
|
|
#include "peer.h"
|
|
|
|
struct lightningd_state;
|
|
|
|
struct payment {
|
|
struct list_node list;
|
|
u64 msatoshis;
|
|
struct rval r;
|
|
struct sha256 rhash;
|
|
};
|
|
|
|
struct payment *find_payment(struct lightningd_state *dstate,
|
|
const struct sha256 *rhash);
|
|
|
|
#endif /* LIGHTNING_DAEMON_PAYMENT_H */
|