core-lightning/closingd/closing_wire.csv
lisa neigut a8cc933351 closing: add message to billboard when closing txn is broadcast
make it a bit easier to track mutual channel closures by
adding broadcast txid to the listpeers billboard.

since lightningd manages the 'identity' of the closing tx we need
to send it back to closingd so it can update the billboard
appropriately.
2019-04-12 03:35:16 +00:00

1.6 KiB

1#include <common/cryptomsg.h>
2#include <common/htlc_wire.h>
3# Begin! (passes peer fd, gossipd-client fd)
4closing_init,2001
5closing_init,,crypto_state,struct crypto_state
6closing_init,,funding_txid,struct bitcoin_txid
7closing_init,,funding_txout,u16
8closing_init,,funding_satoshi,struct amount_sat
9closing_init,,local_fundingkey,struct pubkey
10closing_init,,remote_fundingkey,struct pubkey
11closing_init,,funder,enum side
12closing_init,,local_sat,struct amount_sat
13closing_init,,remote_sat,struct amount_sat
14closing_init,,our_dust_limit,struct amount_sat
15closing_init,,min_fee_satoshi,struct amount_sat
16closing_init,,fee_limit_satoshi,struct amount_sat
17closing_init,,initial_fee_satoshi,struct amount_sat
18closing_init,,local_scriptpubkey_len,u16
19closing_init,,local_scriptpubkey,local_scriptpubkey_len*u8
20closing_init,,remote_scriptpubkey_len,u16
21closing_init,,remote_scriptpubkey,remote_scriptpubkey_len*u8
22closing_init,,reconnected,bool
23closing_init,,next_index_local,u64
24closing_init,,next_index_remote,u64
25closing_init,,revocations_received,u64
26closing_init,,channel_reestablish_len,u16
27closing_init,,channel_reestablish,channel_reestablish_len*u8
28closing_init,,final_scriptpubkey_len,u16
29closing_init,,final_scriptpubkey,final_scriptpubkey_len*u8
30closing_init,,last_remote_secret,struct secret
31# We received an offer, save signature.
32closing_received_signature,2002
33closing_received_signature,,signature,struct bitcoin_signature
34closing_received_signature,,tx,struct bitcoin_tx
35closing_received_signature_reply,2102
36closing_received_signature_reply,,closing_txid,struct bitcoin_txid
37# Negotiations complete, we're exiting.
38closing_complete,2004