From f20db1c835a2142ba79d0d7ebeab0a2be901a685 Mon Sep 17 00:00:00 2001 From: Aleksandr Bezobchuk Date: Wed, 25 Mar 2020 11:03:36 -0400 Subject: [PATCH] Update ADR --- .../adr-020-protobuf-transaction-encoding.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/architecture/adr-020-protobuf-transaction-encoding.md b/docs/architecture/adr-020-protobuf-transaction-encoding.md index 184ddf6af5f7..d58df6fb5de2 100644 --- a/docs/architecture/adr-020-protobuf-transaction-encoding.md +++ b/docs/architecture/adr-020-protobuf-transaction-encoding.md @@ -125,10 +125,11 @@ type ClientTx interface { We then update `CLIContext` to have a new field: `Marshler`. -Then, each module client handler will at the minimum accept a `Marshaler` instead -of a concrete Amino codec and a `Generator`. If the module needs to work with any -interface types, it will use the `Codec` interface defined by the module which also -extends `Marshaler`. +Then, each module's client handler will at the minimum accept a `Marshaler` instead +of a concrete Amino codec and a `Generator` along with an `AccountRetriever` so +that account fields can be retrieved for signing. If the module needs to work with +any interface types, it will use the `Codec` interface defined by the module which +also extends `Marshaler`. ## Future Improvements