You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (gRPC) [#19049](https://github.com/cosmos/cosmos-sdk/pull/19049) Add debug log prints for each gRPC request.
60
-
* (x/consensus) [#19483](https://github.com/cosmos/cosmos-sdk/pull/19483) Add consensus messages registration to consensus module.
61
60
* (types) [#19759](https://github.com/cosmos/cosmos-sdk/pull/19759) Align SignerExtractionAdapter in PriorityNonceMempool Remove.
62
61
* (client) [#19870](https://github.com/cosmos/cosmos-sdk/pull/19870) Add new query command `wait-tx`. Alias `event-query-tx-for` to `wait-tx` for backward compatibility.
63
62
* (crypto/keyring) [#20212](https://github.com/cosmos/cosmos-sdk/pull/20212) Expose the db keyring used in the keystore.
64
63
* (genutil) [#19971](https://github.com/cosmos/cosmos-sdk/pull/19971) Allow manually setting the consensus key type in genesis
64
+
* (cli) [#20779](https://github.com/cosmos/cosmos-sdk/pull/20779) Added `module-hash-by-height` command to query and retrieve module hashes at a specified blockchain height, enhancing debugging capabilities.
65
65
* (client/tx) [#20870](https://github.com/cosmos/cosmos-sdk/pull/20870) Add `timeout-timestamp` field for tx body defines time based timeout.Add `WithTimeoutTimestamp` to tx factory. Increased gas cost for processing newly added timeout timestamp field in tx body.
66
66
67
67
### Improvements
@@ -144,7 +144,6 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
144
144
* The module manager now can do everything that the basic manager was doing.
145
145
* When using runtime, just inject the module manager when needed using your app config.
* (server) [#18303](https://github.com/cosmos/cosmos-sdk/pull/18303)`x/genutil` now handles the application export. `server.AddCommands` does not take an `AppExporter` but instead `genutilcli.Commands` does.
149
148
* (x/gov/testutil) [#17986](https://github.com/cosmos/cosmos-sdk/pull/18036)`MsgDeposit` has been removed because of AutoCLI migration.
150
149
* (x/staking/testutil) [#17986](https://github.com/cosmos/cosmos-sdk/pull/17986)`MsgRedelegateExec`, `MsgUnbondExec` has been removed because of AutoCLI migration.
@@ -174,7 +173,6 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
174
173
* (x/staking) [#18257](https://github.com/cosmos/cosmos-sdk/pull/18257) Staking module was moved to its own go.mod `cosmossdk.io/x/staking`
175
174
* (x/authz) [#18265](https://github.com/cosmos/cosmos-sdk/pull/18265) Authz module was moved to its own go.mod `cosmossdk.io/x/authz`
176
175
* (x/mint) [#18283](https://github.com/cosmos/cosmos-sdk/pull/18283) Mint module was moved to its own go.mod `cosmossdk.io/x/mint`
177
-
* (x/consensus) [#18041](https://github.com/cosmos/cosmos-sdk/pull/18041)`ToProtoConsensusParams()` returns an error
178
176
* (x/slashing) [#18115](https://github.com/cosmos/cosmos-sdk/pull/18115)`NewValidatorSigningInfo` takes strings instead of `sdk.AccAddress`
179
177
* (types) [#18268](https://github.com/cosmos/cosmos-sdk/pull/18268) Remove global setting of basedenom. Use the staking module parameter instead
180
178
* (x/auth) [#18351](https://github.com/cosmos/cosmos-sdk/pull/18351) Auth module was moved to its own go.mod `cosmossdk.io/x/auth`
Copy file name to clipboardExpand all lines: UPGRADING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -728,7 +728,7 @@ And in the application client (usually `root.go`):
728
728
}
729
729
```
730
730
731
-
When using `depinject` / `app v2`, the a tx config should be recreated from the `txConfigOpts` to use `NewGRPCCoinMetadataQueryFn` instead of depending on the bank keeper (that is used in the server).
731
+
When using `depinject` / `app v2`, the tx config should be recreated from the `txConfigOpts` to use `NewGRPCCoinMetadataQueryFn` instead of depending on the bank keeper (that is used in the server).
732
732
733
733
To learn more see the [docs](https://docs.cosmos.network/main/learn/advanced/transactions#sign_mode_textual) and the [ADR-050](https://docs.cosmos.network/main/build/architecture/adr-050-sign-mode-textual).
0 commit comments