Skip to content

Commit

Permalink
Raise mempool config gas per tx's defaults (#7291)
Browse files Browse the repository at this point in the history
* Update fee config defaults

* Add changelog
  • Loading branch information
ValarDragon authored Jan 10, 2024
1 parent 00be601 commit 5e15437
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [#7253](https://github.com/osmosis-labs/osmosis/pull/7253) Extended app hash logs (includes module hashes for easier debugging)
* [#7258](https://github.com/osmosis-labs/osmosis/pull/7258) Remove an iterator call in CL swaps and spot price calls.
* [#7282](https://github.com/osmosis-labs/osmosis/pull/7282) Update sdk fork to no longer utilize reverse denom mapping, reducing gas costs.
* [#7291](https://github.com/osmosis-labs/osmosis/pull/7291) Raise mempool config's default max gas per tx configs.

### Bug Fixes

Expand Down
4 changes: 2 additions & 2 deletions x/txfees/types/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var DefaultMinGasPriceForArbitrageTx = osmomath.ZeroDec()

var (
DefaultMinGasPriceForHighGasTx = osmomath.ZeroDec()
DefaultMaxGasWantedPerTx = uint64(25 * 1000 * 1000)
DefaultHighGasTxThreshold = uint64(2 * 1000 * 1000)
DefaultMaxGasWantedPerTx = uint64(30 * 1000 * 1000)
DefaultHighGasTxThreshold = uint64(2.5 * 1000 * 1000)
DefaultMempool1559Enabled = true
)

Expand Down

0 comments on commit 5e15437

Please sign in to comment.