aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-18 08:32:20 +0800
committerobscuren <geffobscura@gmail.com>2014-02-18 08:32:20 +0800
commitba95849097f7a35d9f315a4f2e340d3ef944a306 (patch)
tree4c754a1baf045ce74c9bec9ad4623f71cc347749 /ethutil
parentbb3e28310ee3c2cfc5b3153510d4a1d220a22e81 (diff)
downloadgo-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar.gz
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar.bz2
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar.lz
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar.xz
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.tar.zst
go-tangerine-ba95849097f7a35d9f315a4f2e340d3ef944a306.zip
Added hex method
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/helpers.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/ethutil/helpers.go b/ethutil/helpers.go
index 2e3aeb9a3..11a474081 100644
--- a/ethutil/helpers.go
+++ b/ethutil/helpers.go
@@ -58,3 +58,7 @@ func MatchingNibbleLength(a, b []int) int {
func Hex(d []byte) string {
return hex.EncodeToString(d)
}
+func ToHex(str string) []byte {
+ h, _ := hex.DecodeString(str)
+ return h
+}