You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--txpool.api.addr: Set the txPool api network address (default: use value of --private.api.addr)
--txpool.disable Experimental external pool and block producer, see ./cmd/txpool/readme.md for more info. Disabling internal txpool and block producer. (default: false)
--txpool.pricebump Price bump percentage to replace an already existing transaction (default: 10)
--txpool.pricelimit Minimum gas price (fee cap) limit to enforce for acceptance into the pool (default: 1)
--txpool.locals: Comma separated accounts to treat as locals (no flush, priority inclusion)
--txpool.nolocals: Disables price exemptions for locally submitted transactions (default: false)
--txpool.accountslots: Set the minimum number of executable transaction slots guaranteed per account (default: 16)
--txpool.blobslots: Set the max allowed total number of blobs (within type-3 txs) per account (default: 48)
--txpool.blobpricebump: Price bump percentage to replace existing (type-3) blob transaction (default: 100)
--txpool.totalblobpoollimit: Set the total limit of number of all blobs in txs within the txpool (default: 480)
--txpool.globalslots: Set the maximum number of executable transaction slots for all accounts (default: 10000)
--txpool.globalbasefeeslots: Set the maximum number of non-executable transactions where only not enough baseFee (default: 30000)
--txpool.accountqueue: Set the maximum number of non-executable transaction slots permitted per account (default: 64)
--txpool.globalqueue: Set the maximum number of non-executable transaction slots for all accounts (default: 30000)
--txpool.lifetime: Set the maximum amount of time non-executable transaction are queued (default: 3h0m0s)
--txpool.trace.senders: Set the comma-separated list of addresses, whose transactions will traced in transaction pool with debug printing
--txpool.commit.every: Set the how often transactions should be committed to the storage (default: 15s)
The text was updated successfully, but these errors were encountered:
Add limits on how users can enter transactions into the transaction pool.
See https://docs.erigon.tech/advanced/configuring#txpool for inspiration.
The text was updated successfully, but these errors were encountered: