diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-14 18:46:32 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-14 18:46:32 +0800 |
commit | 51df765e3892285bda6d40340dc6febfcd2e7ce6 (patch) | |
tree | eb55d41ec2f62babef19af22e7fadf5280935d47 /rpc/util.go | |
parent | b927c29469864424a97c06ff2f31e2d882b01cd7 (diff) | |
parent | 9754e7aca79a3d24ac17589f548072a4dca68fbb (diff) | |
download | dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.gz dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.bz2 dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.lz dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.xz dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.zst dexon-51df765e3892285bda6d40340dc6febfcd2e7ce6.zip |
Merge pull request #481 from maran/feature/fromHexDry
DRY-up the use of fromHex in the project
Diffstat (limited to 'rpc/util.go')
-rw-r--r-- | rpc/util.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/rpc/util.go b/rpc/util.go index 573190e59..4acd90284 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -128,19 +128,6 @@ func toHex(b []byte) string { return "0x" + hex } -func fromHex(s string) []byte { - if len(s) > 1 { - if s[0:2] == "0x" { - s = s[2:] - } - if len(s)%2 == 1 { - s = "0" + s - } - return ethutil.Hex2Bytes(s) - } - return nil -} - func i2hex(n int) string { return toHex(big.NewInt(int64(n)).Bytes()) } |