From 00e52dcb1701cdab674a103718f59ed12f7f35bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=B6ller?= Date: Mon, 21 Oct 2024 20:19:43 +0200 Subject: [PATCH] Remove Input field for fake STOP TX --- packages/evm/jsonrpc/types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/evm/jsonrpc/types.go b/packages/evm/jsonrpc/types.go index 10418e05f8..4537862bac 100644 --- a/packages/evm/jsonrpc/types.go +++ b/packages/evm/jsonrpc/types.go @@ -166,7 +166,6 @@ func RPCMarshalTransactionTraceForFakeTX(tx *types.Transaction, effectiveGasPric "gas": hexutil.Uint64(tx.Gas()), "gasUsed": hexutil.Uint64(tx.Gas()), "to": tx.To(), - "input": hexutil.Bytes(tx.Data()), "type": FakeTxOpcode, "value": hexutil.Big(*tx.Value()), }