update deterministicResponseDeliverTx

This commit is contained in:
Aleksandr Bezobchuk
2020-11-03 12:01:09 -05:00
parent c80ccfc79f
commit 9dd263d896
+5 -4
View File
@@ -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,
}
}