mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 22:25:24 +01:00
htlcswitch: placate confused linter
This commit is contained in:
parent
804dabb4ea
commit
94373bd96f
1 changed files with 4 additions and 1 deletions
|
@ -2987,7 +2987,10 @@ func (l *channelLink) HandleChannelUpdate(message lnwire.Message) {
|
|||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue