Skip to content

Commit b7fdb92

Browse files
karalabeqianhh
authored andcommitted
miner: lower default min miner tip from 1 gwei to 0.001 gwei (#29895)
1 parent 80378d5 commit b7fdb92

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
@@ -56,7 +56,7 @@ type Config struct {
5656
// DefaultConfig contains default settings for miner.
5757
var DefaultConfig = Config{
5858
GasCeil: 30_000_000,
59-
GasPrice: big.NewInt(params.GWei),
59+
GasPrice: big.NewInt(params.GWei / 1000),
6060

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

0 commit comments

Comments
 (0)