Skip to content

Commit 07ef4db

Browse files
karalabejorgemmsilva
authored andcommitted
miner: lower default min miner tip from 1 gwei to 0.001 gwei (ethereum#29895)
1 parent 8531f6b commit 07ef4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner/miner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type Config struct {
5353
// DefaultConfig contains default settings for miner.
5454
var DefaultConfig = Config{
5555
GasCeil: 30_000_000,
56-
GasPrice: big.NewInt(params.GWei),
56+
GasPrice: big.NewInt(params.GWei / 1000),
5757

5858
// The default recommit time is chosen as two seconds since
5959
// consensus-layer usually will wait a half slot of time(6s)

0 commit comments

Comments
 (0)