mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 15:44:21 +01:00
v2 channel open uses a different method to derive the channel_id, so now we save it to the database so that we dont have to remember how to derive it for each. includes a migration for existing channels
2.0 KiB
2.0 KiB
| 1 | #include <bitcoin/tx.h> |
|---|---|
| 2 | #include <common/channel_id.h> |
| 3 | #include <common/cryptomsg.h> |
| 4 | #include <common/htlc_wire.h> |
| 5 | #include <common/per_peer_state.h> |
| 6 | # Begin! (passes peer fd, gossipd-client fd) |
| 7 | msgtype,closingd_init,2001 |
| 8 | msgdata,closingd_init,chainparams,chainparams, |
| 9 | msgdata,closingd_init,pps,per_peer_state, |
| 10 | msgdata,closingd_init,channel_id,channel_id, |
| 11 | msgdata,closingd_init,funding_txid,bitcoin_txid, |
| 12 | msgdata,closingd_init,funding_txout,u16, |
| 13 | msgdata,closingd_init,funding_satoshi,amount_sat, |
| 14 | msgdata,closingd_init,local_fundingkey,pubkey, |
| 15 | msgdata,closingd_init,remote_fundingkey,pubkey, |
| 16 | msgdata,closingd_init,opener,enum side, |
| 17 | msgdata,closingd_init,local_sat,amount_sat, |
| 18 | msgdata,closingd_init,remote_sat,amount_sat, |
| 19 | msgdata,closingd_init,our_dust_limit,amount_sat, |
| 20 | msgdata,closingd_init,min_fee_satoshi,amount_sat, |
| 21 | msgdata,closingd_init,fee_limit_satoshi,amount_sat, |
| 22 | msgdata,closingd_init,initial_fee_satoshi,amount_sat, |
| 23 | msgdata,closingd_init,local_scriptpubkey_len,u16, |
| 24 | msgdata,closingd_init,local_scriptpubkey,u8,local_scriptpubkey_len |
| 25 | msgdata,closingd_init,remote_scriptpubkey_len,u16, |
| 26 | msgdata,closingd_init,remote_scriptpubkey,u8,remote_scriptpubkey_len |
| 27 | msgdata,closingd_init,fee_negotiation_step,u64, |
| 28 | msgdata,closingd_init,fee_negotiation_step_unit,u8, |
| 29 | msgdata,closingd_init,reconnected,bool, |
| 30 | msgdata,closingd_init,next_index_local,u64, |
| 31 | msgdata,closingd_init,next_index_remote,u64, |
| 32 | msgdata,closingd_init,revocations_received,u64, |
| 33 | msgdata,closingd_init,channel_reestablish_len,u16, |
| 34 | msgdata,closingd_init,channel_reestablish,u8,channel_reestablish_len |
| 35 | msgdata,closingd_init,last_remote_secret,secret, |
| 36 | msgdata,closingd_init,dev_fast_gossip,bool, |
| 37 | # We received an offer, save signature. |
| 38 | msgtype,closingd_received_signature,2002 |
| 39 | msgdata,closingd_received_signature,signature,bitcoin_signature, |
| 40 | msgdata,closingd_received_signature,tx,bitcoin_tx, |
| 41 | msgtype,closingd_received_signature_reply,2102 |
| 42 | msgdata,closingd_received_signature_reply,closing_txid,bitcoin_txid, |
| 43 | # Negotiations complete, we're exiting. |
| 44 | msgtype,closingd_complete,2004 |