rgb-cln/gossipd/gossip_peerd_wire.csv

1.6 KiB

1# Channel daemon can ask for updates for a specific channel, for sending
2# errors. Must be distinct from WIRE_CHANNEL_ANNOUNCEMENT etc. gossip msgs!
3gossipd_get_update,3501
4gossipd_get_update,,short_channel_id,struct short_channel_id
5# If channel isn't known, update will be empty.
6gossipd_get_update_reply,3601
7gossipd_get_update_reply,,len,u16
8gossipd_get_update_reply,,update,len*u8
9# Gossipd can tell channeld etc about raw messages to fwd.
10gossipd_send_gossip,3502
11gossipd_send_gossip,,len,u16
12gossipd_send_gossip,,gossip,len*u8
13# But usually gossipd just gives an offset into the gossip_store
14gossipd_send_gossip_from_store,3506
15gossipd_send_gossip_from_store,,offset,u64
16# Both sides have seen the funding tx being locked, but we have not
17# yet reached the announcement depth. So we add the channel locally so
18# we (and peer) can update it already.
19gossipd_local_add_channel,3503
20gossipd_local_add_channel,,short_channel_id,struct short_channel_id
21gossipd_local_add_channel,,remote_node_id,struct node_id
22gossipd_local_add_channel,,satoshis,struct amount_sat
23# Send this channel_update.
24gossipd_local_channel_update,3504
25gossipd_local_channel_update,,short_channel_id,struct short_channel_id
26gossipd_local_channel_update,,disable,bool
27gossipd_local_channel_update,,cltv_expiry_delta,u16
28gossipd_local_channel_update,,htlc_minimum_msat,struct amount_msat
29gossipd_local_channel_update,,fee_base_msat,u32
30gossipd_local_channel_update,,fee_proportional_millionths,u32
31gossipd_local_channel_update,,htlc_maximum_msat,struct amount_msat
32# Update your gossip_store fd: + gossip_store_fd
33gossipd_new_store_fd,3505