From 3ab5899853ec0a891f103ea08f90de63f4953032 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Mon, 20 Apr 2020 22:12:49 -0700 Subject: [PATCH] lnwallet/channel: fix log typo --- lnwallet/channel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/channel.go b/lnwallet/channel.go index 5f6eef92..4cf75c0a 100644 --- a/lnwallet/channel.go +++ b/lnwallet/channel.go @@ -2414,7 +2414,7 @@ func (lc *LightningChannel) fetchCommitmentView(remoteChain bool, chainfee.SatPerKWeight(weight) if effFeeRate < chainfee.FeePerKwFloor { return nil, fmt.Errorf("height=%v, for ChannelPoint(%v) "+ - "attempts to create commitment wigh feerate %v: %v", + "attempts to create commitment with feerate %v: %v", nextHeight, lc.channelState.FundingOutpoint, effFeeRate, spew.Sdump(commitTx)) }