From dd93fc2539792be98b372a4c6e9b8ecef212a1a7 Mon Sep 17 00:00:00 2001 From: George Tsagkarelis Date: Tue, 25 Apr 2023 21:27:24 +0300 Subject: [PATCH] routing: log node pubkey as hex --- routing/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/router.go b/routing/router.go index 8028fbc57..c170822b6 100644 --- a/routing/router.go +++ b/routing/router.go @@ -1434,7 +1434,7 @@ func (r *ChannelRouter) processUpdate(msg interface{}, } if err := r.cfg.Graph.AddLightningNode(msg, op...); err != nil { - return errors.Errorf("unable to add node %v to the "+ + return errors.Errorf("unable to add node %x to the "+ "graph: %v", msg.PubKeyBytes, err) }