forked from cerc-io/plugeth
cmd/utils, params: define chain ids
This commit is contained in:
parent
6c9c1e6712
commit
7a6c6ec946
@ -881,6 +881,13 @@ func MakeChainConfigFromDb(ctx *cli.Context, db ethdb.Database) *params.ChainCon
|
||||
config.EIP158Block = params.MainNetSpuriousDragon
|
||||
}
|
||||
}
|
||||
if config.ChainId.BitLen() == 0 {
|
||||
if ctx.GlobalBool(TestNetFlag.Name) {
|
||||
config.ChainId = params.TestNetChainID
|
||||
} else {
|
||||
config.ChainId = params.MainNetChainID
|
||||
}
|
||||
}
|
||||
config.DAOForkSupport = true
|
||||
}
|
||||
|
||||
|
@ -37,4 +37,7 @@ var (
|
||||
|
||||
TestNetSpuriousDragon = big.NewInt(3000000)
|
||||
MainNetSpuriousDragon = big.NewInt(3000000)
|
||||
|
||||
TestNetChainID = big.NewInt(2) // Test net default chain ID
|
||||
MainNetChainID = big.NewInt(1) // main net default chain ID
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user