Skip to content

Commit

Permalink
chore(ci): fix tox framework.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Oct 29, 2024
1 parent d20b3c4 commit 88d07c1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/cli/eofwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ def wrap_file(self, in_path: str, out_path: str, traces: bool):
except ValueError as e:
self.metrics[self.ACCOUNTS_INVALID_EOF] += 1
_inc_counter(
self.metrics[self.VALIDATION_ERRORS], self._short_exception_msg(e)
self.metrics[self.VALIDATION_ERRORS],
self._short_exception_msg(e),
)
continue

Expand Down Expand Up @@ -262,13 +263,10 @@ def _wrap_fixture(self, fixture: BlockchainFixture, traces: bool):
base_fee_per_gas=header.base_fee_per_gas,
withdrawals_root=header.withdrawals_root,
parent_beacon_block_root=header.parent_beacon_block_root,
requests_root=header.requests_root,
requests_hash=header.requests_hash,
)
assert not fixture_block.ommers
assert not fixture_block.withdrawals
assert not fixture_block.deposit_requests
assert not fixture_block.withdrawal_requests
assert not fixture_block.consolidation_requests

for fixture_tx in fixture_block.txs:
fixture_tx_dump = fixture_tx.model_dump()
Expand Down

0 comments on commit 88d07c1

Please sign in to comment.