Skip to content

Commit

Permalink
Increased the account queue/slots to 200 from 10 in tx pool
Browse files Browse the repository at this point in the history
  • Loading branch information
gameofpointers authored and jdowning100 committed Nov 14, 2024
1 parent 080c7d5 commit a341e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,12 @@ var DefaultTxPoolConfig = TxPoolConfig{
PriceLimit: 0,
PriceBump: 5,

AccountSlots: 10,
AccountSlots: 200,
GlobalSlots: 19000 + 1024, // urgent + floating queue capacity with 4:1 ratio
MaxSenders: 10000, // 5 MB - at least 10 blocks worth of transactions in case of reorg or high production rate
MaxFeesCached: 50000,
SendersChBuffer: 1024, // at 500 TPS in zone, 2s buffer
AccountQueue: 3,
AccountQueue: 200,
GlobalQueue: 20048,
QiPoolSize: 10024,
QiTxLifetime: 30 * time.Minute,
Expand Down

0 comments on commit a341e53

Please sign in to comment.