Skip to content

Commit f07df38

Browse files
gurukamathSamWilsn
authored andcommitted
remove log from t8n receipt
1 parent 17e03d6 commit f07df38

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -339,14 +339,6 @@ def json_encode_receipts(self) -> Any:
339339

340340
receipt_dict["gasUsed"] = hex(receipt.cumulative_gas_used)
341341
receipt_dict["bloom"] = "0x" + receipt.bloom.hex()
342-
receipt_dict["logs"] = [
343-
{
344-
"address": "0x" + log.address.hex(),
345-
"topics": ["0x" + topic.hex() for topic in log.topics],
346-
"data": "0x" + log.data.hex(),
347-
}
348-
for log in receipt.logs
349-
]
350342

351343
receipts_json.append(receipt_dict)
352344

0 commit comments

Comments
 (0)