diff --git a/util/util.go b/util/util.go index 5f53ea7..e09b6f3 100644 --- a/util/util.go +++ b/util/util.go @@ -74,7 +74,7 @@ func GetBytesAsHex(key []byte) []byte { hex.Encode(dst, key) return dst } - +func func GetBytesFromHex(key []byte) []byte { dst := make([]byte, hex.DecodedLen(len(key))) n, err := hex.Decode(dst, key)