diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c4c82b2c4..2088c8f54f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ - [2261](https://github.com/umee-network/umee/pull/2261) Use go 1.21 - [2263](https://github.com/umee-network/umee/pull/2263) Add spot price fields to account summary, and ensure all other fields use leverage logic prices. +- [2270](https://github.com/umee-network/umee/pull/2270) Increase free oracle tx limit to 200k gas. ### Bug Fixes diff --git a/ante/fee.go b/ante/fee.go index e2c9f31b84..56ac2c844d 100644 --- a/ante/fee.go +++ b/ante/fee.go @@ -11,7 +11,7 @@ import ( ) // MaxOracleGasUsage defines the maximum gas allowed for an oracle transaction. -const MaxOracleGasUsage = uint64(140_000) +const MaxOracleGasUsage = uint64(200_000) // FeeAndPriority ensures tx has enough fee coins to pay for the gas at the CheckTx time // to early remove transactions from the mempool without enough attached fee.