Update ADR + changelog

This commit is contained in:
Aleksandr Bezobchuk 2020-03-25 11:09:26 -04:00
parent f20db1c835
commit e77d5cb677
No known key found for this signature in database
GPG Key ID: 7DAC30FBD99879B0
2 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,7 @@ older clients.
### API Breaking Changes
* (baseapp) [\#5865](https://github.com/cosmos/cosmos-sdk/pull/5865) The `SimulationResponse` returned from tx simulation is now JSON encoded instead of Amino binary.
* [\#5719](https://github.com/cosmos/cosmos-sdk/pull/5719) Bump Go requirement to 1.14+
* (x/params) [\#5619](https://github.com/cosmos/cosmos-sdk/pull/5619) The `x/params` keeper now accepts a `codec.Marshaller` instead of
a reference to an amino codec. Amino is still used for JSON serialization.

View File

@ -103,6 +103,11 @@ to handle all the types, but also knows how to generate transactions, signatures
and messages.
```go
type AccountRetriever interface {
EnsureExists(addr sdk.AccAddress) error
GetAccountNumberSequence(addr sdk.AccAddress) (uint64, uint64, error)
}
type Generator interface {
NewTx() ClientTx
}