abci: remove unused fields from CheckTXResponse (part 1) (#8605)

abci: Removed Info, Log, Events and GasUsed from ResponseCheckTx. 
spec: Updated info on ResponseCheckTx to reflect field removal.
This commit is contained in:
Jasmina Malicevic
2022-05-25 23:06:16 +02:00
committed by GitHub
parent f33722b423
commit 4c857a7ed2
14 changed files with 326 additions and 468 deletions

View File

@@ -162,7 +162,6 @@ func (app *Application) CheckTx(_ context.Context, req *abci.RequestCheckTx) (*a
if err != nil {
return &abci.ResponseCheckTx{
Code: code.CodeTypeEncodingError,
Log: err.Error(),
}, nil
}
return &abci.ResponseCheckTx{Code: code.CodeTypeOK, GasWanted: 1}, nil