Merge pull request #2591 from halseth/fndg-dont-spew-shortchanid

[trivial] fundingmanager: don't spew log shortChanID
This commit is contained in:
Johan T. Halseth 2019-02-07 11:36:12 +01:00 committed by GitHub
commit 351865ac67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2287,7 +2287,7 @@ func (f *fundingManager) annAfterSixConfs(completeChan *channeldb.OpenChannel,
chanID := lnwire.NewChanIDFromOutPoint(&fundingPoint)
fndgLog.Infof("Announcing ChannelPoint(%v), short_chan_id=%v",
&fundingPoint, spew.Sdump(shortChanID))
&fundingPoint, shortChanID)
// We'll obtain the min HTLC value we can forward in our
// direction, as we'll use this value within our ChannelUpdate.
@ -2319,7 +2319,7 @@ func (f *fundingManager) annAfterSixConfs(completeChan *channeldb.OpenChannel,
}
fndgLog.Debugf("Channel with ChannelPoint(%v), short_chan_id=%v "+
"announced", &fundingPoint, spew.Sdump(shortChanID))
"announced", &fundingPoint, shortChanID)
}
// We delete the channel opening state from our internal database