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

@ -58,7 +58,7 @@ func (app *GRPCApplication) DeliverTx(ctx context.Context, req *RequestDeliverTx
func (app *GRPCApplication) CheckTx(ctx context.Context, req *RequestCheckTx) (*ResponseCheckTx, error) {
r := app.app.CheckTx(req.Tx)
return &ResponseCheckTx{r.Code, r.Data, r.Log, r.Tags}, nil
return &ResponseCheckTx{r.Code, r.Data, r.Log}, nil
}
func (app *GRPCApplication) Query(ctx context.Context, req *RequestQuery) (*ResponseQuery, error) {