Skip to content

Commit 586ac9b

Browse files
authored
params: use spaces instead of tabs in config description (#32564)
The tabs aren't consistently spaced with the other items in the description. This fixes it.
1 parent 5cc4436 commit 586ac9b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

params/config.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -531,25 +531,25 @@ func (c *ChainConfig) Description() string {
531531
banner += fmt.Sprintf(" - Prague: @%-10v\n", *c.PragueTime)
532532
}
533533
if c.OsakaTime != nil {
534-
banner += fmt.Sprintf(" - Osaka: @%-10v\n", *c.OsakaTime)
534+
banner += fmt.Sprintf(" - Osaka: @%-10v\n", *c.OsakaTime)
535535
}
536536
if c.VerkleTime != nil {
537537
banner += fmt.Sprintf(" - Verkle: @%-10v\n", *c.VerkleTime)
538538
}
539539
if c.BPO1Time != nil {
540-
banner += fmt.Sprintf(" - BPO1: @%-10v\n", *c.BPO1Time)
540+
banner += fmt.Sprintf(" - BPO1: @%-10v\n", *c.BPO1Time)
541541
}
542542
if c.BPO2Time != nil {
543-
banner += fmt.Sprintf(" - BPO2: @%-10v\n", *c.BPO2Time)
543+
banner += fmt.Sprintf(" - BPO2: @%-10v\n", *c.BPO2Time)
544544
}
545545
if c.BPO3Time != nil {
546-
banner += fmt.Sprintf(" - BPO3: @%-10v\n", *c.BPO3Time)
546+
banner += fmt.Sprintf(" - BPO3: @%-10v\n", *c.BPO3Time)
547547
}
548548
if c.BPO4Time != nil {
549-
banner += fmt.Sprintf(" - BPO4: @%-10v\n", *c.BPO4Time)
549+
banner += fmt.Sprintf(" - BPO4: @%-10v\n", *c.BPO4Time)
550550
}
551551
if c.BPO5Time != nil {
552-
banner += fmt.Sprintf(" - BPO5: @%-10v\n", *c.BPO5Time)
552+
banner += fmt.Sprintf(" - BPO5: @%-10v\n", *c.BPO5Time)
553553
}
554554
return banner
555555
}

0 commit comments

Comments
 (0)