mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-19 06:44:23 +01:00
Fix typo in logging
This commit is contained in:
@@ -155,7 +155,7 @@ func getSignedEncryptedData(in *lspdrpc.Encrypted) (string, []byte, error) {
|
|||||||
}
|
}
|
||||||
pubkey, err := btcec.ParsePubKey(signed.Pubkey, btcec.S256())
|
pubkey, err := btcec.ParsePubKey(signed.Pubkey, btcec.S256())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("unable to parse pubkey: %w", err)
|
log.Printf("unable to parse pubkey: %v", err)
|
||||||
return "", nil, fmt.Errorf("unable to parse pubkey: %w", err)
|
return "", nil, fmt.Errorf("unable to parse pubkey: %w", err)
|
||||||
}
|
}
|
||||||
wireSig, err := lnwire.NewSigFromRawSignature(signed.Signature)
|
wireSig, err := lnwire.NewSigFromRawSignature(signed.Signature)
|
||||||
|
|||||||
Reference in New Issue
Block a user