Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
palango authored Jan 20, 2025
2 parents 763544a + 72f15f4 commit a8707dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ var (
GingerbreadBlock: big.NewInt(18785000),
GingerbreadP2Block: big.NewInt(19157000),
HForkBlock: nil, // TBD
L2MigrationBlock: nil,

Istanbul: &IstanbulConfig{
Epoch: 17280,
Expand Down Expand Up @@ -126,6 +127,7 @@ var (
GingerbreadBlock: big.NewInt(19814000),
GingerbreadP2Block: big.NewInt(19814000),
HForkBlock: nil, // TBD
L2MigrationBlock: big.NewInt(26384000),

Istanbul: &IstanbulConfig{
Epoch: 17280,
Expand Down Expand Up @@ -356,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 @@ -376,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 a8707dd

Please sign in to comment.