Browse Source

lnwire: add upfront shutdown script tlvs

master
bitromortac 5 years ago committed by ThomasV
parent
commit
cf6e3e4efa
  1. 10
      electrum/lnwire/peer_wire.csv

10
electrum/lnwire/peer_wire.csv

@ -50,8 +50,9 @@ msgdata,open_channel,delayed_payment_basepoint,point,
msgdata,open_channel,htlc_basepoint,point, msgdata,open_channel,htlc_basepoint,point,
msgdata,open_channel,first_per_commitment_point,point, msgdata,open_channel,first_per_commitment_point,point,
msgdata,open_channel,channel_flags,byte, msgdata,open_channel,channel_flags,byte,
msgdata,open_channel,shutdown_len,u16,,option_upfront_shutdown_script msgdata,open_channel,tlvs,open_channel_tlvs,
msgdata,open_channel,shutdown_scriptpubkey,byte,shutdown_len,option_upfront_shutdown_script tlvtype,open_channel_tlvs,upfront_shutdown_script,0
tlvdata,open_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...
msgtype,accept_channel,33 msgtype,accept_channel,33
msgdata,accept_channel,temporary_channel_id,byte,32 msgdata,accept_channel,temporary_channel_id,byte,32
msgdata,accept_channel,dust_limit_satoshis,u64, msgdata,accept_channel,dust_limit_satoshis,u64,
@ -67,8 +68,9 @@ msgdata,accept_channel,payment_basepoint,point,
msgdata,accept_channel,delayed_payment_basepoint,point, msgdata,accept_channel,delayed_payment_basepoint,point,
msgdata,accept_channel,htlc_basepoint,point, msgdata,accept_channel,htlc_basepoint,point,
msgdata,accept_channel,first_per_commitment_point,point, msgdata,accept_channel,first_per_commitment_point,point,
msgdata,accept_channel,shutdown_len,u16,,option_upfront_shutdown_script msgdata,accept_channel,tlvs,accept_channel_tlvs,
msgdata,accept_channel,shutdown_scriptpubkey,byte,shutdown_len,option_upfront_shutdown_script tlvtype,accept_channel_tlvs,upfront_shutdown_script,0
tlvdata,accept_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...
msgtype,funding_created,34 msgtype,funding_created,34
msgdata,funding_created,temporary_channel_id,byte,32 msgdata,funding_created,temporary_channel_id,byte,32
msgdata,funding_created,funding_txid,sha256, msgdata,funding_created,funding_txid,sha256,

1 msgtype,init,16
50 msgdata,open_channel,htlc_basepoint,point,
51 msgdata,open_channel,first_per_commitment_point,point,
52 msgdata,open_channel,channel_flags,byte,
53 msgdata,open_channel,shutdown_len,u16,,option_upfront_shutdown_script msgdata,open_channel,tlvs,open_channel_tlvs,
54 msgdata,open_channel,shutdown_scriptpubkey,byte,shutdown_len,option_upfront_shutdown_script tlvtype,open_channel_tlvs,upfront_shutdown_script,0
55 tlvdata,open_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...
56 msgtype,accept_channel,33
57 msgdata,accept_channel,temporary_channel_id,byte,32
58 msgdata,accept_channel,dust_limit_satoshis,u64,
68 msgdata,accept_channel,delayed_payment_basepoint,point,
69 msgdata,accept_channel,htlc_basepoint,point,
70 msgdata,accept_channel,first_per_commitment_point,point,
71 msgdata,accept_channel,shutdown_len,u16,,option_upfront_shutdown_script msgdata,accept_channel,tlvs,accept_channel_tlvs,
72 msgdata,accept_channel,shutdown_scriptpubkey,byte,shutdown_len,option_upfront_shutdown_script tlvtype,accept_channel_tlvs,upfront_shutdown_script,0
73 tlvdata,accept_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...
74 msgtype,funding_created,34
75 msgdata,funding_created,temporary_channel_id,byte,32
76 msgdata,funding_created,funding_txid,sha256,
Loading…
Cancel
Save