Skip to content

Commit

Permalink
Add change log
Browse files Browse the repository at this point in the history
  • Loading branch information
preminem committed Oct 12, 2019
1 parent ab0fb28 commit e6dd5ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ that error is that the account doesn't exist.
* [\#4843](https://github.com/cosmos/cosmos-sdk/issues/4843) Add RegisterEvidences function in the codec package to register
Tendermint evidence types with a given codec.
* (rest) [\#3867](https://github.com/cosmos/cosmos-sdk/issues/3867) Allow querying for genesis transaction when height query param is set to zero.
* (rest) [\#5113](https://github.com/cosmos/cosmos-sdk/issues/5113) Add CreateValidatorHandlerFn and EditValidatorHandlerFn in REST.
* [\#2020](https://github.com/cosmos/cosmos-sdk/issues/2020) New keys export/import command line utilities to export/import private keys in ASCII format
that rely on Keybase's new underlying ExportPrivKey()/ImportPrivKey() API calls.
* [\#3565](https://github.com/cosmos/cosmos-sdk/issues/3565) Implement parameter change proposal support.
Expand Down
4 changes: 2 additions & 2 deletions x/staking/client/rest/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ type (
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
ValidatorAddress sdk.ValAddress `json:"address" yaml:"address"`
Description types.Description `json:"description" yaml:"description"`
CommissionRate *sdk.Dec `json:"commission_rate" yaml:"commission_rate"`
MinSelfDelegation *sdk.Int `json:"min_self_delegation" yaml:"min_self_delegation"`
CommissionRate sdk.Dec `json:"commission_rate" yaml:"commission_rate"`
MinSelfDelegation sdk.Int `json:"min_self_delegation" yaml:"min_self_delegation"`
}

// DelegateRequest defines the properties of a delegation request's body.
Expand Down

0 comments on commit e6dd5ca

Please sign in to comment.