forked from cerc-io/laconicd-deprecated
eth_getTransactionReceipt Impl (#109)
* wip Implement get transaction receipt, waiting on details to finalize * Fix response format for tx receipt * Fix duplicate err check * remove cumulative gas field * Used byte conversion function
This commit is contained in:
+1
-1
@@ -106,7 +106,7 @@ func handleETHTxMsg(ctx sdk.Context, keeper Keeper, msg types.EthereumTxMsg) sdk
|
||||
|
||||
// TODO: Consume gas from sender
|
||||
|
||||
return sdk.Result{Log: addr.Hex(), GasUsed: msg.Data.GasLimit - leftOverGas}
|
||||
return sdk.Result{Data: addr.Bytes(), GasUsed: msg.Data.GasLimit - leftOverGas}
|
||||
}
|
||||
|
||||
func refundGas(
|
||||
|
||||
Reference in New Issue
Block a user