Added hex method

poc8
obscuren 11 years ago
parent bb3e28310e
commit ba95849097
  1. 4
      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
}

Loading…
Cancel
Save