Skip to content

Commit

Permalink
docs(fix): more tox fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Jan 19, 2024
1 parent 58dc065 commit 00d767d
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,29 +79,31 @@ Test fixtures for use by clients are available for each release on the [Github r
- New fixture name: `fork_Frontier`
4. Produced `blockchain_tests` fixtures and their corresponding `blockchain_tests_hive` fixtures now contain the named exceptions `BlockException` and `TransactionException` as strings in the `expectException` and `validationError` fields, respectively. These exceptions can be used to test whether the client is hitting the proper exception when processing an invalid block.

Blockchain test:
```json
"blocks": [
{
...
"expectException": "TransactionException.INSUFFICIENT_ACCOUNT_FUNDS",
...
}
Blockchain test:

```json
"blocks": [
{
...
"expectException": "TransactionException.INSUFFICIENT_ACCOUNT_FUNDS",
...
}
...
]
```

Blockchain hive test:

```json
"engineNewPayloads": [
{
...
]
```

Blockchain hive test:
```json
"engineNewPayloads": [
{
...
"validationError": "TransactionException.INSUFFICIENT_ACCOUNT_FUNDS",
...
}
"validationError": "TransactionException.INSUFFICIENT_ACCOUNT_FUNDS",
...
]
```
}
...
]
```

## [v1.0.6](https://github.com/ethereum/execution-spec-tests/releases/tag/v1.0.6) - 2023-10-19: 🐍🏖️ Cancun Devnet 10

Expand Down

0 comments on commit 00d767d

Please sign in to comment.