aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/util.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
commit51df765e3892285bda6d40340dc6febfcd2e7ce6 (patch)
treeeb55d41ec2f62babef19af22e7fadf5280935d47 /rpc/util.go
parentb927c29469864424a97c06ff2f31e2d882b01cd7 (diff)
parent9754e7aca79a3d24ac17589f548072a4dca68fbb (diff)
downloaddexon-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.go13
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())
}