Skip to content

Commit

Permalink
typofix + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
yun-yeo committed Mar 8, 2021
1 parent 60ca73b commit 145a720
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 @@ -85,6 +85,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (x/bank) [\#8434](https://github.com/cosmos/cosmos-sdk/pull/8434) Fix legacy REST API `GET /bank/total` and `GET /bank/total/{denom}` in swagger
* (x/slashing) [\#8427](https://github.com/cosmos/cosmos-sdk/pull/8427) Fix query signing infos command
* (server) [\#8399](https://github.com/cosmos/cosmos-sdk/pull/8399) fix gRPC-web flag default value
* (x/gov) [\#8813](https://github.com/cosmos/cosmos-sdk/pull/8813) fix `GET /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits` to include initial deposit

## [v0.41.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.41.3) - 2021-03-02

Expand Down
2 changes: 1 addition & 1 deletion x/gov/client/utils/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (p Proposer) String() string {
func QueryDepositsByTxQuery(clientCtx client.Context, params types.QueryProposalParams) ([]byte, error) {
var deposits []types.Deposit

// initial deposit was submitted with proposal, so must be queried seperately
// initial deposit was submitted with proposal, so must be queried separately
initialDeposit, err := QueryInitialDepositByTxQuery(clientCtx, params.ProposalID)
if err != nil {
return nil, err
Expand Down

0 comments on commit 145a720

Please sign in to comment.