From de6e67063e999f8209e3c4bdbcfeafa888cb51bf Mon Sep 17 00:00:00 2001 From: Sahil-4555 Date: Mon, 1 Dec 2025 11:21:12 +0530 Subject: [PATCH] fix lint --- common/bytes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/bytes.go b/common/bytes.go index 69318328ae..e2d6ece15a 100644 --- a/common/bytes.go +++ b/common/bytes.go @@ -38,7 +38,7 @@ func FromHex(s string) []byte { } // CopyBytes returns an exact copy of the provided bytes. -func CopyBytes(b []byte) []byte { +func CopyBytes(b []byte) []byte { return bytes.Clone(b) }