mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
Update default miner gas configs (#32)
This commit is contained in:
parent
91117be440
commit
c0886119b3
1 changed files with 2 additions and 2 deletions
|
|
@ -52,8 +52,8 @@ type Config struct {
|
|||
|
||||
// DefaultConfig contains default settings for miner.
|
||||
var DefaultConfig = Config{
|
||||
GasCeil: 45_000_000,
|
||||
GasPrice: big.NewInt(params.GWei / 1000),
|
||||
GasCeil: 36_000_000, // Berachain: set to 36mil to match Prague default
|
||||
GasPrice: big.NewInt(1), // Berachain: set to 1 wei to match reth's default
|
||||
|
||||
// The default recommit time is chosen as two seconds since
|
||||
// consensus-layer usually will wait a half slot of time(6s)
|
||||
|
|
|
|||
Loading…
Reference in a new issue