core/genesis: remove unused CoinBase field from DeveloperGenesisBlock function

This commit is contained in:
Arya Nair 2025-05-26 16:41:35 +05:30
parent e6ff50dbfb
commit 8cf4a0074b

View file

@ -685,7 +685,6 @@ func DeveloperGenesisBlock(gasLimit uint64, faucet *common.Address) (*Genesis, c
BaseFee: big.NewInt(params.InitialBaseFee), BaseFee: big.NewInt(params.InitialBaseFee),
Difficulty: big.NewInt(0), Difficulty: big.NewInt(0),
Alloc: alloc, Alloc: alloc,
Coinbase: faucetAddr,
} }
return genesis, faucetAddr, faucetKey return genesis, faucetAddr, faucetKey
} }