miner: lower default min miner tip from 1 gwei to 0.001 gwei (#29895)

s1na-patch-2
Péter Szilágyi 4 months ago committed by GitHub
parent bdc62f9beb
commit 2613523cb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      miner/miner.go

@ -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…
Cancel
Save