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 e599bd6 commit d1cae55Copy full SHA for d1cae55
src/ethereum/forks/amsterdam/vm/instructions/system.py
@@ -494,6 +494,10 @@ def callcode(evm: Evm) -> None:
494
)
495
charge_gas(evm, message_call_gas.cost + extend_memory.cost)
496
497
+ track_address_access(
498
+ evm.message.block_env.state.change_tracker, code_address
499
+ )
500
+
501
# OPERATION
502
evm.memory += b"\x00" * extend_memory.expand_by
503
sender_balance = get_account(
@@ -632,6 +636,10 @@ def delegatecall(evm: Evm) -> None:
632
636
633
637
634
638
639
640
641
642
635
643
644
645
generic_call(
0 commit comments