From 3b893b1a2f3b867433674f4ec157db1a4870a6d7 Mon Sep 17 00:00:00 2001 From: mahdi Date: Sat, 16 Dec 2023 00:24:58 +0100 Subject: [PATCH] devops - drone test build --- util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/util.go b/util/util.go index e09b6f3..5f53ea7 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)