Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/getting_started/repository_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ The most relevant folders and files in the repo are:
β”‚ β”œβ”€β”€ πŸ“ state_tests/
β”‚ └── πŸ“ ...
β”œβ”€β•΄πŸ“ src/ # library & framework packages
β”‚ β”œβ”€β”€ πŸ“ ethereum_test_fork/
β”‚ β”œβ”€β”€ πŸ“ ethereum_test_tools/
β”‚ β”œβ”€β”€ πŸ“ execution_testing/
β”‚ └── πŸ“ ...
β”œβ”€β•΄πŸ“ docs/ # markdown documentation
β”‚ β”œβ”€β”€ πŸ“ getting_started
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1039,10 +1039,10 @@ Verify, given multiple initial values, that a block is accepted or rejected depe
### Framework Changes

- Add the new header field to the relevant objects:
- `ethereum_test_fixtures.FixtureHeader`.
- `ethereum_test_fixtures.FixtureExecutionPayload`.
- `ethereum_test_specs.Header`.
- Add the appropriate `header_*_required` fork method to `BaseFork` in `ethereum_test_forks`.
- `execution_testing.fixtures.FixtureHeader`.
- `execution_testing.fixtures.FixtureExecutionPayload`.
- `execution_testing.specs.Header`.
- Add the appropriate `header_*_required` fork method to `BaseFork` in `execution_testing.forks`.

## New Block Body Field

Expand All @@ -1067,10 +1067,10 @@ Verify, given multiple initial values, that a block is accepted or rejected depe
### Framework Changes

- Add the new body field to the relevant objects.
- `ethereum_test_fixtures.FixtureBlockBase`.
- `ethereum_test_fixtures.FixtureEngineNewPayload`.
- `ethereum_test_specs.Block`.
- Modify `ethereum_test_specs.BlockchainTest` filling behavior to account for the new block field.
- `execution_testing.fixtures.FixtureBlockBase`.
- `execution_testing.fixtures.FixtureEngineNewPayload`.
- `execution_testing.specs.Block`.
- Modify `execution_testing.specs.BlockchainTest` filling behavior to account for the new block field.

## Gas Cost Changes

Expand Down