mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
Update genesis block (now not working!)
This commit is contained in:
parent
8a1e1c9b52
commit
16bb843d32
1 changed files with 3 additions and 3 deletions
|
|
@ -24,19 +24,19 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
MainnetGenesisHash = common.HexToHash("0x6a54298664cc735e6c0f9d951fd0411dbe4623561a97ba9420362c129c6a8883") // Mainnet genesis hash to enforce below configs on
|
MainnetGenesisHash = common.HexToHash("0x1b0b929c172bcc0d9c9b7eedf98a21f47272831fbb4d2722e1e1076b08a8541f") // Mainnet genesis hash to enforce below configs on
|
||||||
TestnetGenesisHash = common.HexToHash("0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d") // Testnet genesis hash to enforce below configs on
|
TestnetGenesisHash = common.HexToHash("0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d") // Testnet genesis hash to enforce below configs on
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// MainnetChainConfig is the chain parameters to run a node on the main network.
|
// MainnetChainConfig is the chain parameters to run a node on the main network.
|
||||||
MainnetChainConfig = &ChainConfig{
|
MainnetChainConfig = &ChainConfig{
|
||||||
ChainId: big.NewInt(24122000),
|
ChainId: big.NewInt(1),
|
||||||
HomesteadBlock: big.NewInt(0),
|
HomesteadBlock: big.NewInt(0),
|
||||||
DAOForkBlock: nil,
|
DAOForkBlock: nil,
|
||||||
DAOForkSupport: true,
|
DAOForkSupport: true,
|
||||||
EIP150Block: big.NewInt(0),
|
EIP150Block: big.NewInt(0),
|
||||||
EIP150Hash: common.HexToHash("0x6a54298664cc735e6c0f9d951fd0411dbe4623561a97ba9420362c129c6a8883"),
|
EIP150Hash: common.HexToHash("0x1b0b929c172bcc0d9c9b7eedf98a21f47272831fbb4d2722e1e1076b08a8541f"),
|
||||||
EIP155Block: big.NewInt(0),
|
EIP155Block: big.NewInt(0),
|
||||||
EIP158Block: big.NewInt(0),
|
EIP158Block: big.NewInt(0),
|
||||||
ByzantiumBlock: nil,
|
ByzantiumBlock: nil,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue