From cbf347e2aabbb06e84eba7f0debcc92dedce4aa0 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 22 Nov 2017 19:07:36 -0600 Subject: [PATCH] add comment for Client interface [ci skip] --- client/client.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/client.go b/client/client.go index 5878b619..092c479a 100644 --- a/client/client.go +++ b/client/client.go @@ -8,6 +8,10 @@ import ( cmn "github.com/tendermint/tmlibs/common" ) +// Client defines an interface for an ABCI client. Client-related errors (e.g. +// network errors) are returned as a second return value for most calls +// (sometimes there is no response). Application-related errors are reflected +// in response via ABCI error codes and logs. type Client interface { cmn.Service