You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
#ifndef LIGHTNING_LIGHTNINGD_ONCHAIN_ONCHAIN_TYPES_H
|
|
#define LIGHTNING_LIGHTNINGD_ONCHAIN_ONCHAIN_TYPES_H
|
|
#include "config.h"
|
|
|
|
/* Different transactions we care about. */
|
|
enum tx_type {
|
|
/* The initial 2 of 2 funding transaction */
|
|
FUNDING_TRANSACTION,
|
|
|
|
/* A mutual close: spends funding */
|
|
MUTUAL_CLOSE,
|
|
|
|
/* Their unilateral: spends funding */
|
|
THEIR_UNILATERAL,
|
|
|
|
/* Our unilateral: spends funding */
|
|
OUR_UNILATERAL,
|
|
|
|
/* Their old unilateral: spends funding */
|
|
THEIR_REVOKED_UNILATERAL,
|
|
|
|
/* The 2 different types of HTLC transaction, each way */
|
|
THEIR_HTLC_TIMEOUT_TO_THEM,
|
|
THEIR_HTLC_FULFILL_TO_US,
|
|
OUR_HTLC_TIMEOUT_TO_US,
|
|
OUR_HTLC_FULFILL_TO_THEM,
|
|
|
|
/* Delayed variants */
|
|
OUR_HTLC_TIMEOUT_TX,
|
|
OUR_HTLC_SUCCESS_TX,
|
|
|
|
/* When we spend a delayed output (after cltv_expiry) */
|
|
OUR_DELAYED_RETURN_TO_WALLET,
|
|
|
|
/* When we use revocation key to take output. */
|
|
OUR_PENALTY_TX,
|
|
|
|
/* Special type for marking outputs as resolved by self. */
|
|
SELF,
|
|
|
|
/* Shouldn't happen. */
|
|
UNKNOWN_TXTYPE
|
|
};
|
|
|
|
/* Different output types. */
|
|
enum output_type {
|
|
/* FUNDING_TRANSACTION */
|
|
FUNDING_OUTPUT,
|
|
|
|
/* THEIR_UNILATERAL */
|
|
OUTPUT_TO_US,
|
|
DELAYED_OUTPUT_TO_THEM,
|
|
|
|
/* OUR_UNILATERAL, or OUR_HTLC_TIMEOUT_TX */
|
|
DELAYED_OUTPUT_TO_US,
|
|
OUTPUT_TO_THEM,
|
|
|
|
/* HTLC outputs: their offers and our offers */
|
|
THEIR_HTLC,
|
|
OUR_HTLC,
|
|
};
|
|
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_ONCHAIN_ONCHAIN_TYPES_H */
|
|
|