aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helper/common.go
blob: 3d539ebb054981db1cd4f16d2507482b23346839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package helper

import "github.com/ethereum/eth-go/ethutil"

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

    return ethutil.Hex2Bytes(h)
}