Skip to content

Commit

Permalink
Log l2 migration block in config (#2341)
Browse files Browse the repository at this point in the history
  • Loading branch information
palango authored Dec 5, 2024
1 parent 420ba07 commit 1ebb1be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (c *ChainConfig) String() string {
} else {
engine = "MockEngine"
}
return fmt.Sprintf("{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v Petersburg: %v Istanbul: %v Churrito: %v, Donut: %v, Espresso: %v, Gingerbread: %v, Gingerbread P2: %v, HForkBlock: %v, Engine: %v}",
return fmt.Sprintf("{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v Petersburg: %v Istanbul: %v Churrito: %v, Donut: %v, Espresso: %v, Gingerbread: %v, Gingerbread P2: %v, L2MigrationBlock: %v, Engine: %v}",
c.ChainID,
c.HomesteadBlock,
c.DAOForkBlock,
Expand All @@ -378,7 +378,7 @@ func (c *ChainConfig) String() string {
c.EspressoBlock,
c.GingerbreadBlock,
c.GingerbreadP2Block,
c.HForkBlock,
c.L2MigrationBlock,
engine,
)
}
Expand Down

0 comments on commit 1ebb1be

Please sign in to comment.