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 3cd05e0 commit d4d1576Copy full SHA for d4d1576
src/cli/eofwrap.py
@@ -232,7 +232,14 @@ def _short_exception_msg(self, e: Exception):
232
return short
233
234
def _wrap_fixture(self, fixture: BlockchainFixture, traces: bool):
235
- env = Environment()
+ env = Environment(
236
+ difficulty=fixture.genesis.difficulty,
237
+ gas_limit=fixture.genesis.gas_limit,
238
+ base_fee_per_gas=fixture.genesis.base_fee_per_gas,
239
+ blob_gas_used=fixture.genesis.blob_gas_used,
240
+ excess_blob_gas=fixture.genesis.excess_blob_gas,
241
+ parent_beacon_block_root=fixture.genesis.parent_beacon_block_root,
242
+ )
243
244
pre = fixture.pre
245
0 commit comments