plugeth/tests/helper/common.go
2015-03-16 11:27:38 +01:00

12 lines
165 B
Go

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)
}