minor things

This commit is contained in:
Ethan Buchman 2017-11-27 20:27:18 +00:00
parent e9094fbee3
commit 5a46675185
2 changed files with 5 additions and 9 deletions

View File

@ -4,8 +4,9 @@
BREAKING CHANGES:
- [client] all XxxSync methods now return (ResponseXxx, error)
- [types] Application: all methods take RequestXxx and return (ResponseXxx, error),
except CheckTx/DeliverTx, which take `tx []byte`, and `Commit`, which takes nothing.
- [types] Application: all methods now take RequestXxx and return (ResponseXxx, error).
- Except `CheckTx`/`DeliverTx`, which takes a `tx []byte` argument.
- Except `Commit`, which takes no arguments.
- [types] removed Result
FEATURES:

View File

@ -14,11 +14,6 @@ import (
cmn "github.com/tendermint/tmlibs/common"
)
const (
OK = types.CodeType_OK
LOG = ""
)
const reqQueueSize = 256 // TODO make configurable
// const maxResponseSize = 1048576 // 1MB TODO make configurable
const flushThrottleMS = 20 // Don't wait longer than...
@ -251,8 +246,8 @@ func (cli *socketClient) CheckTxAsync(tx []byte) *ReqRes {
return cli.queueRequest(types.ToRequestCheckTx(tx))
}
func (cli *socketClient) QueryAsync(reqQuery types.RequestQuery) *ReqRes {
return cli.queueRequest(types.ToRequestQuery(reqQuery))
func (cli *socketClient) QueryAsync(req types.RequestQuery) *ReqRes {
return cli.queueRequest(types.ToRequestQuery(req))
}
func (cli *socketClient) CommitAsync() *ReqRes {