Left-pad odd length hex inputs and tests
This commit is contained in:
@ -132,6 +132,9 @@ func fromHex(s string) []byte {
|
||||
if s[0:2] == "0x" {
|
||||
s = s[2:]
|
||||
}
|
||||
if len(s)%2 == 1 {
|
||||
s = "0" + s
|
||||
}
|
||||
return ethutil.Hex2Bytes(s)
|
||||
}
|
||||
return nil
|
||||
|
Reference in New Issue
Block a user