core-lightning/lightningd/channel/channel_wire.csv
Rusty Russell 14505594b5 lightningd/channel: convert to subd.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-03-11 07:19:41 +10:30

1.2 KiB

1# Shouldn't happen
2channel_bad_command,0x8000
3# Also shouldn't happen
4channel_hsm_failed,0x8001
5# These are due to peer.
6channel_peer_write_failed,0x8010
7channel_peer_read_failed,0x8011
8channel_peer_bad_message,0x8012
9# Received funding_locked
10channel_received_funding_locked,1000
11# Received and sent funding_locked
12channel_normal_operation,1001
13#include <lightningd/cryptomsg.h>
14#include <lightningd/channel_config.h>
15# Begin! You're still waiting for the tx to be buried though.
16channel_init,1
17channel_init,0,funding_txid,32,struct sha256_double
18channel_init,32,funding_txout,2
19channel_init,34,our_config,36,struct channel_config
20channel_init,70,their_config,36,struct channel_config
21channel_init,106,first_commit_sig,64,secp256k1_ecdsa_signature
22channel_init,166,crypto_state,144,struct crypto_state
23channel_init,310,remote_fundingkey,33
24channel_init,343,revocation_basepoint,33
25channel_init,376,payment_basepoint,33
26channel_init,409,delayed_payment_basepoint,33
27channel_init,442,their_per_commit_point,33
28channel_init,475,am_funder,1,bool
29channel_init,476,feerate,4
30channel_init,480,funding_satoshi,8
31channel_init,488,push_msat,8
32channel_init,496,seed,32,struct privkey
33# Tx is deep enough, go!
34channel_funding_locked,2