Skip to content

Commit

Permalink
params/types/coregeth: fix typo on core-geth chain configurator EIPs …
Browse files Browse the repository at this point in the history
…for Shanghai
  • Loading branch information
ziogaschr committed Sep 4, 2023
1 parent 8415892 commit 26265c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions params/types/coregeth/chain_config_configurator.go
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ func (c *CoreGethChainConfig) GetEIP3651Transition() *uint64 {
}

func (c *CoreGethChainConfig) SetEIP3651Transition(n *uint64) error {
c.EIP6049FBlock = setBig(c.EIP6049FBlock, n)
c.EIP3651FBlock = setBig(c.EIP3651FBlock, n)
return nil
}

Expand All @@ -581,7 +581,7 @@ func (c *CoreGethChainConfig) GetEIP3855Transition() *uint64 {
}

func (c *CoreGethChainConfig) SetEIP3855Transition(n *uint64) error {
c.EIP6049FBlock = setBig(c.EIP6049FBlock, n)
c.EIP3855FBlock = setBig(c.EIP3855FBlock, n)
return nil
}

Expand All @@ -591,7 +591,7 @@ func (c *CoreGethChainConfig) GetEIP3860Transition() *uint64 {
}

func (c *CoreGethChainConfig) SetEIP3860Transition(n *uint64) error {
c.EIP6049FBlock = setBig(c.EIP6049FBlock, n)
c.EIP3860FBlock = setBig(c.EIP3860FBlock, n)
return nil
}

Expand All @@ -601,7 +601,7 @@ func (c *CoreGethChainConfig) GetEIP4895Transition() *uint64 {
}

func (c *CoreGethChainConfig) SetEIP4895Transition(n *uint64) error {
c.EIP6049FBlock = setBig(c.EIP6049FBlock, n)
c.EIP4895FBlock = setBig(c.EIP4895FBlock, n)
return nil
}

Expand Down

0 comments on commit 26265c7

Please sign in to comment.