diff --git a/core/genesis.go b/core/genesis.go index b52f2ca019..1453decf19 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -258,10 +258,11 @@ func GenesisBlockForTesting(db ethdb.Database, addr common.Address, balance *big func DefaultGenesisBlock() *Genesis { return &Genesis{ Config: params.MainnetChainConfig, - Nonce: 2397694292061277985, + Nonce: 0x214652414e4b4f21, ExtraData: hexutil.MustDecode("0x4672616e6b6f497346726565646f6d"), GasLimit: 5000, Difficulty: big.NewInt(1073741824), + Coinbase: common.HexToAddress("0x93decab0cd745598860f782ac1e8f046cb99e898"), Alloc: decodePrealloc(mainnetAllocData), } }