common.go 165 B

1234567891011
  1. package helper
  2. import "github.com/ethereum/go-ethereum/common"
  3. func FromHex(h string) []byte {
  4. if common.IsHex(h) {
  5. h = h[2:]
  6. }
  7. return common.Hex2Bytes(h)
  8. }