From e0fd0967ae57e895f07babd4d3983e3101e999c3 Mon Sep 17 00:00:00 2001 From: wit Date: Sun, 9 Nov 2025 12:02:57 +0800 Subject: [PATCH] params: fix unnecessary `fmt.Sprintf` --- params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/config.go b/params/config.go index 06288575ae..74411b833a 100644 --- a/params/config.go +++ b/params/config.go @@ -687,7 +687,7 @@ func (c *ChainConfig) Description() string { if c.VerkleTime != nil { banner += fmt.Sprintf(" - Verkle: @%-10v blob: (%s)\n", *c.VerkleTime, c.BlobScheduleConfig.Verkle) } - banner += fmt.Sprintf("\nAll fork specifications can be found at https://ethereum.github.io/execution-specs/src/ethereum/forks/\n") + banner += "\nAll fork specifications can be found at https://ethereum.github.io/execution-specs/src/ethereum/forks/\n" return banner }