From 1886a40c30aa677747d27168893b5e3aaaa7595f Mon Sep 17 00:00:00 2001 From: Adam Tucker Date: Sat, 15 Jun 2024 17:05:13 -0600 Subject: [PATCH 1/2] set optimistic execution --- cmd/osmosisd/cmd/root.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/osmosisd/cmd/root.go b/cmd/osmosisd/cmd/root.go index 4bfea9515d0..beb0b60dd14 100644 --- a/cmd/osmosisd/cmd/root.go +++ b/cmd/osmosisd/cmd/root.go @@ -929,6 +929,7 @@ func newApp(logger log.Logger, db cosmosdb.DB, traceStore io.Writer, appOpts ser baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagDisableIAVLFastNode))), baseapp.SetIAVLFastNodeModuleWhitelist(fastNodeModuleWhitelist), baseapp.SetChainID(chainID), + baseapp.SetOptimisticExecution(), } // If this is an in place testnet, set any new stores that may exist From 671013fddb419f83abfe6cc2c20f1f3b9706169b Mon Sep 17 00:00:00 2001 From: Adam Tucker Date: Sat, 15 Jun 2024 17:12:03 -0600 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b937ec675f9..1182559a6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,11 +44,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### State Breaking -* [#8169](https://github.com/osmosis-labs/osmosis/pull/8169) [#8250](https://github.com/osmosis-labs/osmosis/pull/8250) [#8276](https://github.com/osmosis-labs/osmosis/pull/8276) [#8320](https://github.com/osmosis-labs/osmosis/pull/8320) Support non-pool assets in superfluid staking. +* [#8169](https://github.com/osmosis-labs/osmosis/pull/8169) [#8250](https://github.com/osmosis-labs/osmosis/pull/8250) [#8276](https://github.com/osmosis-labs/osmosis/pull/8276) [#8320](https://github.com/osmosis-labs/osmosis/pull/8320) Support non-pool assets in superfluid staking * [#8274](https://github.com/osmosis-labs/osmosis/pull/8274) SDK v50 and Comet v0.38 upgrade * [#8358](https://github.com/osmosis-labs/osmosis/pull/8358) Set MinDepositRatio gov param to 1 percent for sdk v50 upgrade * [#8344](https://github.com/osmosis-labs/osmosis/pull/8344) Uni-directional trading pair taker fee overrides * [#8355](https://github.com/osmosis-labs/osmosis/pull/8355) [smartaccount] fix: fee payer charged on every message +* [#8393](https://github.com/osmosis-labs/osmosis/pull/8393) Enable optimistic execution ### State Compatible