From 51eaa4949bc28034af4489b00bf1b7bc1d8d6fc6 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 29 Sep 2025 16:14:55 +0200 Subject: [PATCH] Fix typo in fork specifications URL message --- params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/config.go b/params/config.go index 8d06167eed..97be44d5a8 100644 --- a/params/config.go +++ b/params/config.go @@ -595,7 +595,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 forks specifications can be found at https://ethereum.github.io/execution-specs/src/ethereum/forks/\n") + banner += fmt.Sprintf("\nAll fork specifications can be found at https://ethereum.github.io/execution-specs/src/ethereum/forks/\n") return banner }