mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
miner: lower default min miner tip from 1 gwei to 0.001 gwei
This commit is contained in:
parent
5d7d48fc3e
commit
5df97f4b01
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ type Config struct {
|
|||
// DefaultConfig contains default settings for miner.
|
||||
var DefaultConfig = Config{
|
||||
GasCeil: 30_000_000,
|
||||
GasPrice: big.NewInt(params.GWei),
|
||||
GasPrice: big.NewInt(params.GWei / 1000),
|
||||
|
||||
// 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