2023-07-27 23:37:52 +02:00
|
|
|
#ifndef LIGHTNING_CHANNELD_INFLIGHT_H
|
|
|
|
#define LIGHTNING_CHANNELD_INFLIGHT_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <bitcoin/tx.h>
|
|
|
|
#include <common/amount.h>
|
|
|
|
|
|
|
|
struct inflight {
|
|
|
|
struct bitcoin_outpoint outpoint;
|
|
|
|
struct amount_sat amnt;
|
2023-11-03 01:08:33 +01:00
|
|
|
bool remote_tx_sigs;
|
2023-07-27 23:37:52 +02:00
|
|
|
struct wally_psbt *psbt;
|
|
|
|
s64 splice_amnt;
|
|
|
|
struct bitcoin_tx *last_tx;
|
|
|
|
/* last_sig is assumed valid if last_tx is set */
|
|
|
|
struct bitcoin_signature last_sig;
|
|
|
|
bool i_am_initiator;
|
2023-11-03 01:08:33 +01:00
|
|
|
bool force_sign_first;
|
|
|
|
bool is_locked;
|
2023-07-27 23:37:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct inflight *fromwire_inflight(const tal_t *ctx, const u8 **cursor, size_t *max);
|
|
|
|
void towire_inflight(u8 **pptr, const struct inflight *inflight);
|
|
|
|
|
|
|
|
void copy_inflight(struct inflight *dest, struct inflight *src);
|
|
|
|
|
|
|
|
#endif /* LIGHTNING_CHANNELD_INFLIGHT_H */
|