diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 07:08:31 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 07:08:31 +0800 |
commit | fda4d02f946dcef8b6896c8798c318876de0138d (patch) | |
tree | e484ffab9476b7cbf367b89e01e46f6302196c63 /rpc/util.go | |
parent | 35841e51901149a496645b3c3c6be4ec7a58e6c6 (diff) | |
download | dexon-fda4d02f946dcef8b6896c8798c318876de0138d.tar.gz dexon-fda4d02f946dcef8b6896c8798c318876de0138d.tar.zst dexon-fda4d02f946dcef8b6896c8798c318876de0138d.zip |
Left-pad odd length hex inputs and tests
Diffstat (limited to 'rpc/util.go')
-rw-r--r-- | rpc/util.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rpc/util.go b/rpc/util.go index fb4efdb45..a0d858a67 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -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 |