common.go 168 Bytes
Newer Older
obscuren's avatar
obscuren committed
1 2
package helper

3
import "github.com/ethereum/go-ethereum/ethutil"
obscuren's avatar
obscuren committed
4 5 6 7 8 9 10 11

func FromHex(h string) []byte {
	if ethutil.IsHex(h) {
		h = h[2:]
	}

	return ethutil.Hex2Bytes(h)
}