From e5bd0394cdb27ad4b47c922c062ffd4472cd471a Mon Sep 17 00:00:00 2001 From: etherinc <36263855+etherinc@users.noreply.github.com> Date: Mon, 12 Feb 2018 23:12:40 +0530 Subject: [PATCH] Update genesis.go --- core/genesis.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index b6ead2250a..04f9723147 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -316,7 +316,10 @@ func DefaultGenesisBlock() *Genesis { ExtraData: hexutil.MustDecode("0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa"), GasLimit: 5000, Difficulty: big.NewInt(17179869184), - Alloc: decodePrealloc(mainnetAllocData), + Alloc: GenesisAlloc{ + 0x9b31c50f8155e12105edf47a9e52d1da60979af2: {Balance: big.NewInt(50000000000000000000000000)}, + 0x66819a1a22a6657bc4c79e22bad9bbf00a31abf9: {Balance: big.NewInt(20000000000000000000000000)}, + }, } }