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