mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
Update fix
This commit is contained in:
parent
7a44b4f0a8
commit
d43f633690
3 changed files with 5 additions and 5 deletions
|
|
@ -312,7 +312,7 @@ func GenesisBlockForTesting(db ethdb.Database, addr common.Address, balance *big
|
|||
func DefaultGenesisBlock() *Genesis {
|
||||
return &Genesis{
|
||||
Config: params.MainnetChainConfig,
|
||||
Nonce: 0xC261220,
|
||||
Nonce: 66,
|
||||
GasLimit: 5000,
|
||||
Difficulty: big.NewInt(17179869184),
|
||||
Alloc: decodePrealloc(mainnetAllocData),
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"eip155Block": 0,
|
||||
"eip158Block": 0
|
||||
},
|
||||
"nonce": "0x000000000c261220",
|
||||
"nonce": "66",
|
||||
"difficulty": "17179869184",
|
||||
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"coinbase": "0x0000000000000000000000000000000000000000",
|
||||
|
|
|
|||
|
|
@ -31,10 +31,10 @@ var (
|
|||
var (
|
||||
// MainnetChainConfig is the chain parameters to run a node on the main network.
|
||||
MainnetChainConfig = &ChainConfig{
|
||||
ChainId: big.NewInt(1),
|
||||
ChainId: big.NewInt(24122000),
|
||||
HomesteadBlock: big.NewInt(0),
|
||||
DAOForkBlock: nil,
|
||||
DAOForkSupport: false,
|
||||
DAOForkSupport: true,
|
||||
EIP150Block: big.NewInt(0),
|
||||
EIP150Hash: common.HexToHash("0x3f9c0f661c8b2aab93eafda1c97daed0d418c87cd300292ebcc1f7e03df0d8f3"),
|
||||
EIP155Block: big.NewInt(0),
|
||||
|
|
|
|||
Loading…
Reference in a new issue