htlcswitch: placate confused linter

This commit is contained in:
Keagan McClelland 2024-01-11 16:03:03 -08:00
parent 804dabb4ea
commit 94373bd96f

View file

@ -2987,7 +2987,10 @@ func (l *channelLink) HandleChannelUpdate(message lnwire.Message) {
default: default:
} }
l.mailBox.AddMessage(message) err := l.mailBox.AddMessage(message)
if err != nil {
l.log.Errorf("failed to add Message to mailbox: %v", err)
}
} }
// updateChannelFee updates the commitment fee-per-kw on this channel by // updateChannelFee updates the commitment fee-per-kw on this channel by