WARNING: DO NOT upgrade to this binary immediately;
Security patch on top of v1.6.0
Upgrade Plan
The plan name for dryrun/mainnet upgrade is v1.6.
Improvements:
- E2ee logic improvements
Bugfixes
- Cleanup and improve x/mint params validation and test in cosmos-sdk
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 = true
Please refer to CHANGELOGS