mirror of
https://github.com/aljazceru/lightning.git
synced 2026-02-18 12:34:21 +01:00
We were sending a channeld message to onchaind, which was v. confusing due to overlap. We make all the numbers distinct, which means we can also add an assert() that it's valid for that daemon, which catches such errors immediately. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
32 lines
896 B
CSV
32 lines
896 B
CSV
#include <common/cryptomsg.h>
|
|
|
|
# FIXME: This is probably too finegrained.
|
|
initr_act_one,14001
|
|
initr_act_two,14002
|
|
initr_act_three,14003
|
|
respr_act_one,14011
|
|
respr_act_two,14012
|
|
respr_act_three,14013
|
|
success,4000
|
|
|
|
handshake_responder,4001
|
|
handshake_responder,,my_id,33
|
|
handshake_responder_reply,4101
|
|
handshake_responder_reply,,initiator_id,33
|
|
handshake_responder_reply,,cs,struct crypto_state
|
|
handshake_responder_reply,,gflen,2
|
|
handshake_responder_reply,,globalfeatures,gflen
|
|
handshake_responder_reply,,lflen,2
|
|
handshake_responder_reply,,localfeatures,lflen
|
|
|
|
handshake_initiator,4002
|
|
handshake_initiator,,my_id,33
|
|
handshake_initiator,,responder_id,33
|
|
|
|
handshake_initiator_reply,4102
|
|
handshake_initiator_reply,,cs,struct crypto_state
|
|
handshake_initiator_reply,,gflen,2
|
|
handshake_initiator_reply,,globalfeatures,gflen
|
|
handshake_initiator_reply,,lflen,2
|
|
handshake_initiator_reply,,localfeatures,lflen
|