Skip to content

Commit

Permalink
chore(confix): update latest config value (cosmos#20012)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt authored Apr 11, 2024
1 parent a0d727e commit 57b659e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/config/toml.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ stop-node-on-err = {{ .Streaming.ABCI.StopNodeOnErr }}
[mempool]
# Setting max-txs to 0 will allow for a unbounded amount of transactions in the mempool.
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool.
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool (no-op mempool).
# Setting max_txs to a positive number (> 0) will limit the number of transactions in the mempool, by the specified amount.
#
# Note, this configuration only applies to SDK built-in app-side mempool
Expand Down
4 changes: 2 additions & 2 deletions tools/confix/data/v0.50-app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,9 @@ stop-node-on-err = true

[mempool]
# Setting max-txs to 0 will allow for a unbounded amount of transactions in the mempool.
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool.
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool (no-op mempool).
# Setting max_txs to a positive number (> 0) will limit the number of transactions in the mempool, by the specified amount.
#
# Note, this configuration only applies to SDK built-in app-side mempool
# implementations.
max-txs = 5000
max-txs = -1
2 changes: 1 addition & 1 deletion tools/confix/data/v0.51-app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ stop-node-on-err = true
#
# Note, this configuration only applies to SDK built-in app-side mempool
# implementations.
max-txs = 5000
max-txs = -1

[custom]

Expand Down

0 comments on commit 57b659e

Please sign in to comment.