We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21110c8 commit f63066eCopy full SHA for f63066e
1 file changed
lightning/src/ln/channelmanager.rs
@@ -6740,16 +6740,13 @@ where
6740
}
6741
},
6742
None => {
6743
- let error = format!(
6744
- "Channel not found for the passed counterparty node_id {next_node_id}"
6745
- );
6746
let logger = WithContext::from(
6747
&self.logger,
6748
Some(next_node_id),
6749
Some(*next_hop_channel_id),
6750
None,
6751
);
6752
- log_error!(logger, "{error} when attempting to forward intercepted HTLC");
+ log_error!(logger, "Channel not found for the passed counterparty node_id {next_node_id} when attempting to forward intercepted HTLC");
6753
return Err(APIError::ChannelUnavailable {
6754
err: format!(
6755
"Channel with id {next_hop_channel_id} not found for the passed counterparty node_id {next_node_id}"
0 commit comments