-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(l1): fixes some withdrawals hive tests (#1713)
**Motivation** There are some hive tests under `ethereum/engine` simulation that are failing due to some mismatches between the implementation of some engine RPC endpoints and their specification. **Description** This PR modifies some engine RPC endpoints validations, to comply with [shangai](https://github.com/ethereum/execution-apis/blob/main/src/engine/shanghai.md) and [cancun](https://github.com/ethereum/execution-apis/blob/main/src/engine/cancun.md) official ethereum engine specification. Those endpoints are: * `engine_newPayloadV1`, `engine_newPayloadV2`, `engine_newPayloadV3` * `engine_forkChoiceUpdatedV1`, `engine_forkChoiceUpdatedV2`, `engine_forkChoiceUpdatedV3` * `engine_getPayloadV1`, `engine_getPayloadV2`, `engine_getPayloadV3` This PR fixes some of the failing tests mentioned on #1586. Those tests are: * Withdrawals Fork on Block 2 (Paris) (ethrex) * Withdrawals Fork on Block 3 (Paris) (ethrex) If you want, you can run only those tests by using the following command: ```bash make run-hive SIMULATION=ethereum/engine TEST_PATTERN="engine-withdrawals/(Withdrawals Fork on Block 2|Withdrawals Fork on Block 3)" ``` --------- Co-authored-by: Julian Ventura <[email protected]>
- Loading branch information
1 parent
9642e1c
commit e8a402a
Showing
4 changed files
with
130 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters