params: use spaces instead of tabs in config description (#32564)
Some checks are pending
/ Windows Build (push) Waiting to run
/ Docker Image (push) Waiting to run
/ Linux Build (push) Waiting to run
/ Linux Build (arm) (push) Waiting to run

The tabs aren't consistently spaced with the other items in the
description. This fixes it.
This commit is contained in:
lightclient 2025-09-10 01:25:25 -06:00 committed by GitHub
parent 5cc443609f
commit 586ac9b334
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -531,25 +531,25 @@ func (c *ChainConfig) Description() string {
banner += fmt.Sprintf(" - Prague: @%-10v\n", *c.PragueTime) banner += fmt.Sprintf(" - Prague: @%-10v\n", *c.PragueTime)
} }
if c.OsakaTime != nil { if c.OsakaTime != nil {
banner += fmt.Sprintf(" - Osaka: @%-10v\n", *c.OsakaTime) banner += fmt.Sprintf(" - Osaka: @%-10v\n", *c.OsakaTime)
} }
if c.VerkleTime != nil { if c.VerkleTime != nil {
banner += fmt.Sprintf(" - Verkle: @%-10v\n", *c.VerkleTime) banner += fmt.Sprintf(" - Verkle: @%-10v\n", *c.VerkleTime)
} }
if c.BPO1Time != nil { if c.BPO1Time != nil {
banner += fmt.Sprintf(" - BPO1: @%-10v\n", *c.BPO1Time) banner += fmt.Sprintf(" - BPO1: @%-10v\n", *c.BPO1Time)
} }
if c.BPO2Time != nil { if c.BPO2Time != nil {
banner += fmt.Sprintf(" - BPO2: @%-10v\n", *c.BPO2Time) banner += fmt.Sprintf(" - BPO2: @%-10v\n", *c.BPO2Time)
} }
if c.BPO3Time != nil { if c.BPO3Time != nil {
banner += fmt.Sprintf(" - BPO3: @%-10v\n", *c.BPO3Time) banner += fmt.Sprintf(" - BPO3: @%-10v\n", *c.BPO3Time)
} }
if c.BPO4Time != nil { if c.BPO4Time != nil {
banner += fmt.Sprintf(" - BPO4: @%-10v\n", *c.BPO4Time) banner += fmt.Sprintf(" - BPO4: @%-10v\n", *c.BPO4Time)
} }
if c.BPO5Time != nil { if c.BPO5Time != nil {
banner += fmt.Sprintf(" - BPO5: @%-10v\n", *c.BPO5Time) banner += fmt.Sprintf(" - BPO5: @%-10v\n", *c.BPO5Time)
} }
return banner return banner
} }