good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit e37f7be9 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub
Browse files

Merge pull request #15577 from karalabe/common-hexconvert-singlebyte

common: fix hex utils to handle 1 byte address conversions
parents be12392f b33a5294
Branches
Tags
No related merge requests found
...@@ -35,13 +35,12 @@ func FromHex(s string) []byte { ...@@ -35,13 +35,12 @@ func FromHex(s string) []byte {
if s[0:2] == "0x" || s[0:2] == "0X" { if s[0:2] == "0x" || s[0:2] == "0X" {
s = s[2:] s = s[2:]
} }
}
if len(s)%2 == 1 { if len(s)%2 == 1 {
s = "0" + s s = "0" + s
} }
return Hex2Bytes(s) return Hex2Bytes(s)
} }
return nil
}
// Copy bytes // Copy bytes
// //
......
...@@ -86,3 +86,12 @@ func TestFromHexOddLength(t *testing.T) { ...@@ -86,3 +86,12 @@ func TestFromHexOddLength(t *testing.T) {
t.Errorf("Expected %x got %x", expected, result) t.Errorf("Expected %x got %x", expected, result)
} }
} }
func TestNoPrefixShortHexOddLength(t *testing.T) {
input := "1"
expected := []byte{1}
result := FromHex(input)
if !bytes.Equal(expected, result) {
t.Errorf("Expected %x got %x", expected, result)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment