Skip to content

Commit

Permalink
Lowered the account slots in tx pool to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gameofpointers committed May 15, 2023
1 parent 213ebb2 commit d765637
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 @@ -169,9 +169,9 @@ var DefaultTxPoolConfig = TxPoolConfig{
PriceLimit: 1,
PriceBump: 10,

AccountSlots: 32,
AccountSlots: 1,
GlobalSlots: 9000 + 1024, // urgent + floating queue capacity with 4:1 ratio
AccountQueue: 640,
AccountQueue: 1,
GlobalQueue: 2048,

Lifetime: 3 * time.Hour,
Expand Down

0 comments on commit d765637

Please sign in to comment.