diff --git a/CHANGELOG.md b/CHANGELOG.md index b4770773536..9f98875f25b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,7 +97,6 @@ which acts as a fuzz testing tool tailored for the SDK state machine. ### Features * [#2387](https://github.com/osmosis-labs/osmosis/pull/2387) Upgrade to IBC v3.2.0, which allows for sending/receiving IBC tokens with slashes. -* [#2057](https://github.com/osmosis-labs/osmosis/pull/2057) Reduce block times to about three seconds * [#1312] Stableswap: Createpool logic * [#1230] Stableswap CFMM equations * [#1429] solver for multi-asset CFMM diff --git a/cmd/osmosisd/cmd/root.go b/cmd/osmosisd/cmd/root.go index c43d54f8551..65c47209343 100644 --- a/cmd/osmosisd/cmd/root.go +++ b/cmd/osmosisd/cmd/root.go @@ -4,7 +4,6 @@ import ( "io" "os" "path/filepath" - "time" "github.com/prometheus/client_golang/prometheus" @@ -75,11 +74,7 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { if err := client.SetCmdClientContextHandler(initClientCtx, cmd); err != nil { return err } - customAppTemplate, customAppConfig := initAppConfig() - serverCtx := server.GetServerContextFromCmd(cmd) - serverCtx.Config.Consensus.TimeoutCommit = 2 * time.Second - return server.InterceptConfigsPreRunHandler(cmd, customAppTemplate, customAppConfig) }, SilenceUsage: true,