Skip to content

Commit

Permalink
better log
Browse files Browse the repository at this point in the history
  • Loading branch information
wanwiset25 committed Mar 3, 2024
1 parent 8c4be74 commit 44d98f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/privacy/ringct.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func SerializeCompressed(p *ecdsa.PublicKey) []byte {

func DeserializeCompressed(curve elliptic.Curve, b []byte) *ecdsa.PublicKey {
if len(b) != 33 {
log.Debug("DeserializeCompresed input []byte is not len 33", "len(b)", len(b))
log.Debug("DeserializeCompresed the input compressed public key is not len 33", "len(b)", len(b))
return nil
}
x := new(big.Int).SetBytes(b[1:33])
Expand Down

0 comments on commit 44d98f0

Please sign in to comment.