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
// If any public channel exists, return no hints and let the sender
602
602
// look at the public channels instead.
603
-
log_trace!(logger,None,None,"Not including channels in invoice route hints on account of public channel {}",
603
+
log_trace!(logger,Some(channel.counterparty.node_id),Some(channel.channel_id),"Not including channels in invoice route hints on account of public channel {}",
604
604
log_bytes!(channel.channel_id));
605
605
returnvec![]
606
606
}
607
607
}
608
608
609
609
if channel.inbound_capacity_msat >= min_inbound_capacity {
610
610
if !min_capacity_channel_exists {
611
-
log_trace!(logger,None,None,"Channel with enough inbound capacity exists for invoice route hints");
611
+
log_trace!(logger,Some(channel.counterparty.node_id),Some(channel.channel_id),"Channel with enough inbound capacity exists for invoice route hints");
0 commit comments