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 GitHub
parent 69845bb44e
commit bff63aec83
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,
}
}