From bceb7fabef4eefa5e0dd2326b93243228ad6e8c3 Mon Sep 17 00:00:00 2001 From: Sahil-4555 Date: Sat, 27 Sep 2025 09:20:59 +0530 Subject: [PATCH] lint fixes --- common/bytes.go | 1 - 1 file changed, 1 deletion(-) diff --git a/common/bytes.go b/common/bytes.go index 98d493a784..b3438c177d 100644 --- a/common/bytes.go +++ b/common/bytes.go @@ -52,7 +52,6 @@ func has0xPrefix(str string) bool { return len(str) >= 2 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X') } - // isHex validates whether each byte is valid hexadecimal string. func isHex(str string) bool { if len(str)%2 != 0 {