Skip to content

Commit 513c9dd

Browse files
committed
f fix caps in error message
1 parent ae71a0e commit 513c9dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ macro_rules! convert_chan_err {
673673
(false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
674674
},
675675
ChannelError::Close(msg) => {
676-
log_trace!($self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!($channel_id[..]), msg);
676+
log_trace!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
677677
if let Some(short_id) = $channel.get_short_channel_id() {
678678
$short_to_id.remove(&short_id);
679679
}

0 commit comments

Comments
 (0)