mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
typo: chainId -> chainID
This commit is contained in:
parent
4ccc2091c1
commit
4887c0c70f
1 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ var (
|
||||||
|
|
||||||
// EllaismChainConfig is the chain parameters to run a node on the Ellaism main network.
|
// EllaismChainConfig is the chain parameters to run a node on the Ellaism main network.
|
||||||
EllaismChainConfig = &ChainConfig{
|
EllaismChainConfig = &ChainConfig{
|
||||||
ChainId: big.NewInt(64),
|
ChainID: big.NewInt(64),
|
||||||
HomesteadBlock: big.NewInt(0),
|
HomesteadBlock: big.NewInt(0),
|
||||||
DAOForkBlock: nil,
|
DAOForkBlock: nil,
|
||||||
DAOForkSupport: true,
|
DAOForkSupport: true,
|
||||||
|
|
@ -70,7 +70,7 @@ var (
|
||||||
|
|
||||||
// ClassicChainConfig is the chain parameters to run a node on the Ellaism main network.
|
// ClassicChainConfig is the chain parameters to run a node on the Ellaism main network.
|
||||||
ClassicChainConfig = &ChainConfig{
|
ClassicChainConfig = &ChainConfig{
|
||||||
ChainId: big.NewInt(61),
|
ChainID: big.NewInt(61),
|
||||||
HomesteadBlock: big.NewInt(1150000),
|
HomesteadBlock: big.NewInt(1150000),
|
||||||
DAOForkBlock: big.NewInt(1920000),
|
DAOForkBlock: big.NewInt(1920000),
|
||||||
DAOForkSupport: false,
|
DAOForkSupport: false,
|
||||||
|
|
@ -91,7 +91,7 @@ var (
|
||||||
|
|
||||||
// SocialChainConfig is the chain parameters to run a node on the Ethereum Social main network.
|
// SocialChainConfig is the chain parameters to run a node on the Ethereum Social main network.
|
||||||
SocialChainConfig = &ChainConfig{
|
SocialChainConfig = &ChainConfig{
|
||||||
ChainId: big.NewInt(28),
|
ChainID: big.NewInt(28),
|
||||||
HomesteadBlock: big.NewInt(0),
|
HomesteadBlock: big.NewInt(0),
|
||||||
DAOForkBlock: nil,
|
DAOForkBlock: nil,
|
||||||
DAOForkSupport: true,
|
DAOForkSupport: true,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue