Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
PIP-35 for amoy: enforce 25gwei gas config for amoy for erigon 2 (#11…
Browse files Browse the repository at this point in the history
…078)

Cherry picks erigontech/erigon#11077

> A followup PR to erigontech/erigon#10119
which sets the fields `txpool.pricelimit`, `miner.gasprice` and
`gpo.ignoreprice` to 25gwei only for polygon amoy network.
> Upon sufficient announcements, it will be generalised to all polygon
chains later.
  • Loading branch information
manav2401 authored Jul 9, 2024
1 parent cffa733 commit 3ebee3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txpool/txpoolcfg/txpoolcfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
)

// BorDefaultTxPoolPriceLimit defines the minimum gas price limit for bor to enforce txs acceptance into the pool.
const BorDefaultTxPoolPriceLimit = 30 * common.GWei
const BorDefaultTxPoolPriceLimit = 25 * common.GWei

type Config struct {
DBDir string
Expand Down

0 comments on commit 3ebee3c

Please sign in to comment.