File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -591,13 +591,13 @@ func (c *ChainConfig) Description() string {
591591 // Create a list of forks post-merge
592592 banner += "Post-Merge hard forks (timestamp based):\n "
593593 if c .ShanghaiTime != nil {
594- banner += fmt .Sprintf (" - Shanghai: @%-10v (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)\n " , c .ShanghaiTime )
594+ banner += fmt .Sprintf (" - Shanghai: @%-10v (https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)\n " , * c .ShanghaiTime )
595595 }
596596 if c .CancunTime != nil {
597- banner += fmt .Sprintf (" - Cancun: @%-10v\n " , c .CancunTime )
597+ banner += fmt .Sprintf (" - Cancun: @%-10v\n " , * c .CancunTime )
598598 }
599599 if c .PragueTime != nil {
600- banner += fmt .Sprintf (" - Prague: @%-10v\n " , c .PragueTime )
600+ banner += fmt .Sprintf (" - Prague: @%-10v\n " , * c .PragueTime )
601601 }
602602 return banner
603603}
You can’t perform that action at this time.
0 commit comments