lnwallet/channel: fix log typo

This commit is contained in:
Conner Fromknecht 2020-04-20 22:12:49 -07:00
parent 4ed0a35b10
commit 3ab5899853
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

View File

@ -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))
}