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 53085f7 commit 6257568Copy full SHA for 6257568
src/ethereum_test_tools/filling/fill.py
@@ -1,6 +1,7 @@
1
"""
2
Filler object definitions.
3
4
+from copy import copy
5
from typing import List, Mapping, Optional
6
7
from evm_block_builder import BlockBuilder
@@ -60,7 +61,7 @@ def fill_test(
60
61
fork="+".join([fork] + [str(eip) for eip in eips])
62
if eips is not None
63
else fork,
- pre_state=test.pre,
64
+ pre_state=copy(test.pre),
65
post_state=alloc,
66
seal_engine=engine,
67
name=test.name,
0 commit comments