From 8e02767d1f2f58c5b8036efe2110aec55b9174bd Mon Sep 17 00:00:00 2001 From: marcello33 Date: Mon, 10 Jun 2024 15:46:52 +0200 Subject: [PATCH] chg: ignore explicitly Errorf return value --- log/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/format.go b/log/format.go index 137a4078df..bdaa3e00df 100644 --- a/log/format.go +++ b/log/format.go @@ -238,7 +238,7 @@ func appendBigInt(dst []byte, n *big.Int) []byte { } if len(n.String()) > 64*1024*1024 { - fmt.Errorf("%s value in appendBigInt is too large to format", n.String()) + _ = fmt.Errorf("%s value in appendBigInt is too large to format", n.String()) } var (