2
0
mirror of https://github.com/lightninglabs/loop synced 2024-11-09 19:10:47 +00:00

client: fix double hex encoding of node pubkey

This commit is contained in:
Oliver Gugger 2021-05-19 13:35:36 +02:00
parent 7453a72759
commit fdbf7e95e1
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -242,7 +242,7 @@ func (s *Client) Run(ctx context.Context,
} }
// Log connected node. // 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, s.lndServices.NodeAlias, s.lndServices.NodePubkey,
lndclient.VersionString(s.lndServices.Version)) lndclient.VersionString(s.lndServices.Version))