mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-12 14:42:38 +02:00
Merge pull request #2079 from sevastos/patch-1
discovery/gossiper: fix logging on failed channel update
This commit is contained in:
@@ -2048,7 +2048,8 @@ func (d *AuthenticatedGossiper) processNetworkAnnouncement(
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("unable to send channel update -- "+
|
log.Errorf("unable to send channel update -- "+
|
||||||
"could not find peer %x: %v",
|
"could not find peer %x: %v",
|
||||||
remotePub, err)
|
remotePub.SerializeCompressed(),
|
||||||
|
err)
|
||||||
} else {
|
} else {
|
||||||
// Send ChannelUpdate directly to remotePeer.
|
// Send ChannelUpdate directly to remotePeer.
|
||||||
// TODO(halseth): make reliable send?
|
// TODO(halseth): make reliable send?
|
||||||
|
Reference in New Issue
Block a user