We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efafcfa commit 3f3650dCopy full SHA for 3f3650d
src/ethereum/osaka/fork.py
@@ -852,11 +852,6 @@ def process_transaction(
852
index:
853
Index of the transaction in the block.
854
"""
855
- trie_set(
856
- block_output.transactions_trie,
857
- rlp.encode(index),
858
- encode_transaction(tx),
859
- )
860
861
intrinsic_gas, calldata_floor_gas_cost = validate_transaction(tx)
862
@@ -989,6 +984,12 @@ def process_transaction(
989
984
receipt,
990
985
)
991
986
987
+ trie_set(
988
+ block_output.transactions_trie,
+ rlp.encode(index),
+ encode_transaction(tx),
+ )
992
+
993
block_output.block_logs += tx_output.logs
994
995
0 commit comments