remove lastresulthash from merklization in lastresult hash (#9175)

remove gas from merklization in headers


Im not sure where to change docs since main points to the spec repo but that repo is archived. Maybe someone can help me?
This commit is contained in:
Marko
2022-08-09 10:16:41 +02:00
committed by Sam Ricotta
parent 2a8f1df887
commit 5e107589cb
4 changed files with 13 additions and 6 deletions

View File

@@ -46,9 +46,7 @@ func (a ABCIResults) toByteSlices() [][]byte {
// ResponseDeliverTx and returns another ResponseDeliverTx.
func deterministicResponseDeliverTx(response *abci.ResponseDeliverTx) *abci.ResponseDeliverTx {
return &abci.ResponseDeliverTx{
Code: response.Code,
Data: response.Data,
GasWanted: response.GasWanted,
GasUsed: response.GasUsed,
Code: response.Code,
Data: response.Data,
}
}