mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-10 07:37:05 +01:00
9014f2593e
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
881 B
881 B
1 | #include <lightningd/cryptomsg.h> |
---|---|
2 | #include <lightningd/channel_config.h> |
3 | # Begin! You're still waiting for the tx to be buried though. |
4 | channel_init,1 |
5 | channel_init,0,funding_txid,32,struct sha256_double |
6 | channel_init,32,funding_txout,2 |
7 | channel_init,34,our_config,36,struct channel_config |
8 | channel_init,70,their_config,36,struct channel_config |
9 | channel_init,106,first_commit_sig,64,secp256k1_ecdsa_signature |
10 | channel_init,166,crypto_state,144,struct crypto_state |
11 | channel_init,310,remote_fundingkey,33 |
12 | channel_init,343,revocation_basepoint,33 |
13 | channel_init,376,payment_basepoint,33 |
14 | channel_init,409,delayed_payment_basepoint,33 |
15 | channel_init,442,their_per_commit_point,33 |
16 | channel_init,475,am_funder,1,bool |
17 | channel_init,476,feerate,4 |
18 | channel_init,480,funding_satoshi,8 |
19 | channel_init,488,push_msat,8 |
20 | channel_init,496,seed,32,struct privkey |
21 | # Tx is deep enough, go! |
22 | channel_funding_locked,2 |