mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
ecbe671688
This lets us implement accept_pkt_anchor(). Also had to predeclare sha256 in commit_tx.h, revealed by the new includes. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
25 lines
727 B
C
25 lines
727 B
C
#ifndef LIGHTNING_COMMIT_TX_H
|
|
#define LIGHTNING_COMMIT_TX_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct channel_state;
|
|
struct sha256_double;
|
|
struct sha256;
|
|
struct pubkey;
|
|
struct rel_locktime;
|
|
|
|
/* Create commitment tx to spend the anchor tx output; doesn't fill in
|
|
* input scriptsig. */
|
|
struct bitcoin_tx *create_commit_tx(const tal_t *ctx,
|
|
const struct pubkey *our_final,
|
|
const struct pubkey *their_final,
|
|
const struct rel_locktime *their_locktime,
|
|
const struct sha256_double *anchor_txid,
|
|
unsigned int anchor_index,
|
|
u64 anchor_satoshis,
|
|
const struct sha256 *rhash,
|
|
const struct channel_state *cstate);
|
|
#endif
|