core-lightning/daemon/pay.h
Rusty Russell 3ba25dd994 htlc: keep rval (if known).
This makes struct htlc a complete object, containing its own information.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2016-07-01 12:00:17 +09:30

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