From 8cf4a0074b0488fef31a368453a5de781fc225bb Mon Sep 17 00:00:00 2001 From: Arya Nair Date: Mon, 26 May 2025 16:41:35 +0530 Subject: [PATCH] core/genesis: remove unused CoinBase field from DeveloperGenesisBlock function --- core/genesis.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/genesis.go b/core/genesis.go index a3e67f53e1..6bb2adf469 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -685,7 +685,6 @@ func DeveloperGenesisBlock(gasLimit uint64, faucet *common.Address) (*Genesis, c BaseFee: big.NewInt(params.InitialBaseFee), Difficulty: big.NewInt(0), Alloc: alloc, - Coinbase: faucetAddr, } return genesis, faucetAddr, faucetKey }