Skip to content

Commit

Permalink
update chainID to 16813125
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Oct 3, 2023
1 parent 55f1905 commit 6beca58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -1861,7 +1861,7 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) {
SetDNSDiscoveryDefaults(cfg, params.GoerliGenesisHash)
case ctx.Bool(SuaveFlag.Name):
if !ctx.IsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 424242
cfg.NetworkId = 16813125
}
cfg.Genesis = core.DefaultSuaveGenesisBlock()
SetDNSDiscoveryDefaults(cfg, params.SuaveGenesisHash)
Expand Down
4 changes: 2 additions & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ var (
}
// SuaveChainConfig contains the chain parameters to run a node on the Suave test network.
SuaveChainConfig = &ChainConfig{
ChainID: big.NewInt(424242),
ChainID: big.NewInt(16813125),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: false,
Expand All @@ -155,7 +155,7 @@ var (

// SuaveChainConfig for development with 0 period to avoid mining empty blocks
DeveloperSuaveChainConfig = &ChainConfig{
ChainID: big.NewInt(424242),
ChainID: big.NewInt(16813125),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: false,
Expand Down

0 comments on commit 6beca58

Please sign in to comment.