From 8e8ceb622d014348491cc301e87118ffb57f9691 Mon Sep 17 00:00:00 2001 From: Derek May <32908855+riddlez666@users.noreply.github.com> Date: Wed, 14 Mar 2018 16:44:15 -0700 Subject: [PATCH] testnet --- core/genesis.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/genesis.go b/core/genesis.go index cb4f8d1ec9..91db455460 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -315,7 +315,7 @@ func DefaultGenesisBlock() *Genesis { Nonce: 69, ExtraData: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000000"), GasLimit: 3141592, - Difficulty: big.NewInt(131072), + Difficulty: big.NewInt(17179869184), Alloc: decodePrealloc(mainnetAllocData), } } @@ -324,10 +324,10 @@ func DefaultGenesisBlock() *Genesis { func DefaultTestnetGenesisBlock() *Genesis { return &Genesis{ Config: params.TestnetChainConfig, - Nonce: 66, - ExtraData: hexutil.MustDecode("0x3535353535353535353535353535353535353535353535353535353535353535"), - GasLimit: 16777216, - Difficulty: big.NewInt(1048576), + Nonce: 64, + ExtraData: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000000"), + GasLimit: 3141592, + Difficulty: big.NewInt(17179869184), Alloc: decodePrealloc(testnetAllocData), } }