remove tags from CheckTx

add value_type field to KVPair
This commit is contained in:
Anton Kaliaev
2017-11-20 18:21:59 -06:00
parent 02399071ff
commit fc7db13fa8
8 changed files with 170 additions and 142 deletions

View File

@ -85,7 +85,7 @@ func (app *localClient) CheckTxAsync(tx []byte) *ReqRes {
app.mtx.Unlock()
return app.callback(
types.ToRequestCheckTx(tx),
types.ToResponseCheckTx(res.Code, res.Data, res.Log, res.Tags),
types.ToResponseCheckTx(res.Code, res.Data, res.Log),
)
}