Skip to content

Commit c100b83

Browse files
committed
fix: include gas costs call in base fork transition
1 parent 7e27e6b commit c100b83

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/testing/src/execution_testing/forks/transition_base_fork.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ def transition_method(
9090

9191
return classmethod(transition_method)
9292

93-
for method_name in base_fork_abstract_methods() + ["bpo_fork"]:
93+
for method_name in base_fork_abstract_methods() + [
94+
"bpo_fork",
95+
"gas_costs",
96+
]:
9497
setattr(
9598
NewTransitionClass,
9699
method_name,

0 commit comments

Comments
 (0)