2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2023-03-29 07:27:06 +00:00
|
|
|
package ethconfig
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
2015-11-20 23:40:36 +00:00
|
|
|
"time"
|
2014-07-29 22:31:15 +00:00
|
|
|
|
2023-03-29 07:27:06 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/common"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/txpool/txpoolcfg"
|
2017-08-18 10:58:36 +00:00
|
|
|
)
|
|
|
|
|
2023-03-29 07:27:06 +00:00
|
|
|
// DeprecatedTxPoolConfig are the configuration parameters of the transaction pool.
|
|
|
|
type DeprecatedTxPoolConfig struct {
|
2022-05-26 05:27:44 +00:00
|
|
|
Disable bool
|
2023-03-29 07:27:06 +00:00
|
|
|
Locals []common.Address // Addresses that should be treated by default as local
|
|
|
|
NoLocals bool // Whether local transaction handling should be disabled
|
2017-07-05 14:06:05 +00:00
|
|
|
|
2017-05-26 10:40:47 +00:00
|
|
|
PriceLimit uint64 // Minimum gas price to enforce for acceptance into the pool
|
|
|
|
PriceBump uint64 // Minimum price bump percentage to replace an already existing transaction (nonce)
|
|
|
|
|
2018-07-24 15:44:41 +00:00
|
|
|
AccountSlots uint64 // Number of executable transaction slots guaranteed per account
|
2017-05-26 10:40:47 +00:00
|
|
|
GlobalSlots uint64 // Maximum number of executable transaction slots for all accounts
|
|
|
|
AccountQueue uint64 // Maximum number of non-executable transaction slots permitted per account
|
|
|
|
GlobalQueue uint64 // Maximum number of non-executable transaction slots for all accounts
|
|
|
|
|
2021-09-29 07:48:19 +00:00
|
|
|
GlobalBaseFeeQueue uint64 // Maximum number of non-executable transaction slots for all accounts
|
|
|
|
|
2021-12-14 16:15:54 +00:00
|
|
|
Lifetime time.Duration // Maximum amount of time non-executable transaction are queued
|
|
|
|
StartOnInit bool
|
|
|
|
TracedSenders []string // List of senders for which tx pool should print out debugging info
|
2023-03-22 03:53:47 +00:00
|
|
|
CommitEvery time.Duration
|
2017-05-26 10:40:47 +00:00
|
|
|
}
|
|
|
|
|
2022-05-26 05:27:44 +00:00
|
|
|
// DeprecatedDefaultTxPoolConfig contains the default configurations for the transaction
|
2017-05-26 10:40:47 +00:00
|
|
|
// pool.
|
2023-03-29 07:27:06 +00:00
|
|
|
var DeprecatedDefaultTxPoolConfig = DeprecatedTxPoolConfig{
|
2017-05-26 10:40:47 +00:00
|
|
|
PriceLimit: 1,
|
|
|
|
PriceBump: 10,
|
|
|
|
|
2021-10-16 05:37:43 +00:00
|
|
|
AccountSlots: 16,
|
|
|
|
GlobalSlots: 10_000,
|
2021-11-15 03:16:03 +00:00
|
|
|
GlobalBaseFeeQueue: 30_000,
|
2021-10-16 05:37:43 +00:00
|
|
|
AccountQueue: 64,
|
2021-11-15 03:16:03 +00:00
|
|
|
GlobalQueue: 30_000,
|
2017-05-26 10:40:47 +00:00
|
|
|
|
|
|
|
Lifetime: 3 * time.Hour,
|
|
|
|
}
|
2022-02-07 09:54:20 +00:00
|
|
|
|
2023-03-29 07:27:06 +00:00
|
|
|
var DefaultTxPool2Config = func(pool1Cfg DeprecatedTxPoolConfig) txpoolcfg.Config {
|
|
|
|
cfg := txpoolcfg.DefaultConfig
|
2022-02-07 09:54:20 +00:00
|
|
|
cfg.PendingSubPoolLimit = int(pool1Cfg.GlobalSlots)
|
|
|
|
cfg.BaseFeeSubPoolLimit = int(pool1Cfg.GlobalBaseFeeQueue)
|
|
|
|
cfg.QueuedSubPoolLimit = int(pool1Cfg.GlobalQueue)
|
|
|
|
cfg.PriceBump = pool1Cfg.PriceBump
|
|
|
|
cfg.MinFeeCap = pool1Cfg.PriceLimit
|
|
|
|
cfg.AccountSlots = pool1Cfg.AccountSlots
|
|
|
|
cfg.LogEvery = 1 * time.Minute
|
|
|
|
cfg.CommitEvery = 5 * time.Minute
|
|
|
|
cfg.TracedSenders = pool1Cfg.TracedSenders
|
2023-03-22 03:53:47 +00:00
|
|
|
cfg.CommitEvery = pool1Cfg.CommitEvery
|
2023-01-17 11:07:57 +00:00
|
|
|
|
2022-02-07 09:54:20 +00:00
|
|
|
return cfg
|
|
|
|
}
|