From cecff8ddb9fadbcacae478d5de87adddce732b9d Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Wed, 18 Sep 2024 17:06:14 +0200 Subject: [PATCH] rm print --- core/genesis.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index 2bc737f1bcae..31db49f527e4 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -180,7 +180,6 @@ func flushAlloc(ga *types.GenesisAlloc, triedb *triedb.Database) (common.Hash, e func getGenesisState(db ethdb.Database, blockhash common.Hash) (alloc types.GenesisAlloc, err error) { blob := rawdb.ReadGenesisStateSpec(db, blockhash) if len(blob) != 0 { - fmt.Printf("genesis json: %s\n", blob) if err := alloc.UnmarshalJSON(blob); err != nil { return nil, err }