aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
+}