From d8fb834386caea0103fad8733f119b87238b75d3 Mon Sep 17 00:00:00 2001 From: zsfelfoldi Date: Tue, 14 Apr 2015 16:01:25 +0200 Subject: test account is no longer permanently in genesis block, only put there when testing --- core/genesis.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'core/genesis.go') diff --git a/core/genesis.go b/core/genesis.go index 1159a5cec..0ce60054e 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -36,7 +36,7 @@ func GenesisBlock(db common.Database) *types.Block { Balance string Code string } - err := json.Unmarshal(genesisData, &accounts) + err := json.Unmarshal(GenesisData, &accounts) if err != nil { fmt.Println("enable to decode genesis json data:", err) os.Exit(1) @@ -56,13 +56,7 @@ func GenesisBlock(db common.Database) *types.Block { return genesis } -const ( - TestAccount = "e273f01c99144c438695e10f24926dc1f9fbf62d" - TestBalance = "1000000000000" -) - -var genesisData = []byte(`{ - "` + TestAccount + `": {"balance": "` + TestBalance + `"}, +var GenesisData = []byte(`{ "0000000000000000000000000000000000000001": {"balance": "1"}, "0000000000000000000000000000000000000002": {"balance": "1"}, "0000000000000000000000000000000000000003": {"balance": "1"}, -- cgit v1.2.3