diff --git a/types/results.go b/types/results.go index 9181450bc..20ce8f7cd 100644 --- a/types/results.go +++ b/types/results.go @@ -46,9 +46,10 @@ 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, + GasWanted: response.GasWanted, + GasUsed: response.GasUsed, + BlockGasUsed: response.BlockGasUsed, } }