From 1519742f8a774704d2f22cf7522a618c7bfa6b0c Mon Sep 17 00:00:00 2001 From: ziggie Date: Thu, 4 May 2023 15:38:51 +0200 Subject: [PATCH] [skip ci] htlcswitch: fix double sat/kw output --- htlcswitch/link.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htlcswitch/link.go b/htlcswitch/link.go index ea652df42..5886baaa0 100644 --- a/htlcswitch/link.go +++ b/htlcswitch/link.go @@ -2771,7 +2771,7 @@ func (l *channelLink) ShutdownIfChannelClean() error { // updateChannelFee updates the commitment fee-per-kw on this channel by // committing to an update_fee message. func (l *channelLink) updateChannelFee(feePerKw chainfee.SatPerKWeight) error { - l.log.Infof("updating commit fee to %v sat/kw", feePerKw) + l.log.Infof("updating commit fee to %v", feePerKw) // We skip sending the UpdateFee message if the channel is not // currently eligible to forward messages.