You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for the gossip_queries feature flag (bits 6/7) is added to the
Features struct. This feature is available in the Init and Node
contexts. The gossip_queries feature is not fully implemented so this
feature is disabled when sent to peers in the Init message.
Copy file name to clipboardExpand all lines: lightning/src/ln/wire.rs
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -415,24 +415,25 @@ mod tests {
415
415
fnread_lnd_init_msg(){
416
416
// Taken from lnd v0.9.0-beta.
417
417
let buffer = vec![0,16,0,2,34,0,0,3,2,162,161];
418
-
check_init_msg(buffer);
418
+
check_init_msg(buffer,false);
419
419
}
420
420
421
421
#[test]
422
422
fnread_clightning_init_msg(){
423
423
// Taken from c-lightning v0.8.0.
424
424
let buffer = vec![0,16,0,2,34,0,0,3,2,170,162,1,32,6,34,110,70,17,26,11,89,202,175,18,96,67,235,91,191,40,195,79,58,94,51,42,31,199,178,183,60,241,136,145,15];
0 commit comments