add comment for Client interface [ci skip]

This commit is contained in:
Anton Kaliaev 2017-11-22 19:07:36 -06:00
parent 2cfad8523a
commit cbf347e2aa
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 4 additions and 0 deletions

View File

@ -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