From f14c555f22051039a0182d9b66e789c6a6c463f5 Mon Sep 17 00:00:00 2001 From: Ellaismer Date: Tue, 27 Mar 2018 04:34:05 -0400 Subject: [PATCH] Wrong genesis block difficulty --- core/genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index fbb2226e74..3af6dba1be 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -329,7 +329,7 @@ func DefaultEllaismGenesisBlock() *Genesis { Nonce: 64, ExtraData: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000000"), GasLimit: 5000, - Difficulty: big.NewInt(17179869184), + Difficulty: big.NewInt(1073741824), Alloc: decodePrealloc(ellaismAllocData), } }