Skip to content

Commit

Permalink
fix: Call Register{Tx,Tendermint}Service (cosmos#12509)
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 authored and JeancarloBarrios committed Sep 28, 2024
1 parent f6a92bb commit 0b2539d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ It is strongly recommended to upgrade to these releases as well.
### Bug Fixes

* [#12448](https://github.com/cosmos/cosmos-sdk/pull/12448) Start telemetry independently from the API server.
* [#12509](https://github.com/cosmos/cosmos-sdk/pull/12509) Fix `Register{Tx,Tendermint}Service` not being called, resulting in some endpoints like the Simulate endpoint not working.

## [v0.46.0-rc2](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.46.0-rc2) - 2022-07-05

Expand Down
2 changes: 1 addition & 1 deletion server/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ func startInProcess[T types.Application](svrCtx *Context, svrCfg serverconfig.Co
} else {
ctx.Logger.Info("starting node with ABCI Tendermint in-process")

tmNode, err := node.NewNode(
tmNode, err = node.NewNode(
cfg,
pvm.LoadOrGenFilePV(cfg.PrivValidatorKeyFile(), cfg.PrivValidatorStateFile()),
nodeKey,
Expand Down

0 comments on commit 0b2539d

Please sign in to comment.