Update ADR + changelog

This commit is contained in:
Aleksandr Bezobchuk
2020-03-25 11:09:26 -04:00
parent f20db1c835
commit e77d5cb677
2 changed files with 6 additions and 0 deletions
@@ -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
}