From fdbf7e95e126c52d7fd5ae7ac64484125a8f6c1d Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 19 May 2021 13:35:36 +0200 Subject: [PATCH] client: fix double hex encoding of node pubkey --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index afdc3f3..94c3646 100644 --- a/client.go +++ b/client.go @@ -242,7 +242,7 @@ func (s *Client) Run(ctx context.Context, } // Log connected node. - log.Infof("Connected to lnd node '%v' with pubkey %x (version %s)", + log.Infof("Connected to lnd node '%v' with pubkey %s (version %s)", s.lndServices.NodeAlias, s.lndServices.NodePubkey, lndclient.VersionString(s.lndServices.Version))