mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
3ba25dd994
This makes struct htlc a complete object, containing its own information. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
225 B
C
12 lines
225 B
C
#ifndef LIGHTNING_DAEMON_PAY_H
|
|
#define LIGHTNING_DAEMON_PAY_H
|
|
#include "config.h"
|
|
|
|
struct peer;
|
|
struct htlc;
|
|
struct rval;
|
|
|
|
void complete_pay_command(struct peer *peer, struct htlc *htlc);
|
|
|
|
#endif /* LIGHTNING_DAEMON_PAY_H */
|