Improvements🚀:
- Support new flags to controls mempool
Bugfixes
-
Missing feebump for priority nonce mempool (tx replacement)
-
Please refer to CHANGELOGS
New configurations
Please add those following line in your app.toml
[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 (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 = 0
# Required percentage threshold for the transaction replacement policy to take effect.
feebump = 10
###############################################################################
### Cronos Configuration ###
###############################################################################
[cronos]
# Set to true to disable tx replacement.
disable-tx-replacement = false
# Set to true to disable optimistic execution (recommended to set to true on NON validator nodes).
disable-optimistic-execution = false