From 949794c2d68485321ac49c525a7842c780a96ffc Mon Sep 17 00:00:00 2001 From: etherinc <36263855+etherinc@users.noreply.github.com> Date: Tue, 13 Feb 2018 01:22:34 +0530 Subject: [PATCH] Update genesis.go --- core/genesis.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/genesis.go b/core/genesis.go index 00175513c2..47afbdd392 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -320,7 +320,7 @@ func DefaultGenesisBlock() *Genesis { Nonce: 66, ExtraData: hexutil.MustDecode("0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa"), GasLimit: 5000, - Difficulty: big.NewInt(17179869184), + Difficulty: big.NewInt(1), Alloc: GenesisAlloc{ addr1: {Balance: big.NewInt(50000000000000000000)}, addr2: {Balance: big.NewInt(20000000000000000000)}, @@ -335,7 +335,7 @@ func DefaultTestnetGenesisBlock() *Genesis { Nonce: 66, ExtraData: hexutil.MustDecode("0x3535353535353535353535353535353535353535353535353535353535353535"), GasLimit: 16777216, - Difficulty: big.NewInt(1048576), + Difficulty: big.NewInt(1), Alloc: decodePrealloc(testnetAllocData), } }