diff options
-rw-r--r-- | lib/hex.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ func BytesToHexStr(bs []byte) string { hs := "" for i := 0; i < len(bs); i++ { - hs += " " + ByteToHexStr(bs[i]) + hs += ByteToHexStr(bs[i]) } return hs } |