Skip to content
Merged
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
26 changes: 22 additions & 4 deletions tests/amsterdam/eip7928_block_level_access_lists/test_cases.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
abstract: Crafted tests for mainnet of [EIP-2537: Precompile for BLS12-381 curve operations](https://eips.ethereum.org/EIPS/eip-2537)
Crafted tests for mainnet of [EIP-2537: Precompile for BLS12-381 curve operations](https://eips.ethereum.org/EIPS/eip-2537).
abstract: Crafted tests for mainnet of
[EIP-2537: Precompile for BLS12-381 curve operations](https://eips.ethereum.org/EIPS/eip-2537).
""" # noqa: E501

import pytest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
abstract: Crafted tests for mainnet of [EIP-2935: Serve historical block hashes from state](https://eips.ethereum.org/EIPS/eip-2935)
Crafted tests for mainnet of [EIP-2935: Serve historical block hashes from state](https://eips.ethereum.org/EIPS/eip-2935).
abstract: Crafted tests for mainnet of
[EIP-2935: Serve historical block hashes from state](https://eips.ethereum.org/EIPS/eip-2935).
""" # noqa: E501

import pytest
Expand Down
6 changes: 3 additions & 3 deletions tests/prague/eip6110_deposits/test_eip_mainnet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
abstract: Crafted tests for mainnet of [EIP-6110: Supply validator deposits on chain](https://eips.ethereum.org/EIPS/eip-6110)
Crafted tests for mainnet of [EIP-6110: Supply validator deposits on chain](https://eips.ethereum.org/EIPS/eip-6110).
abstract: Crafted tests for mainnet of [EIP-6110: Supply validator deposits on chain](https://eips.ethereum.org/EIPS/eip-6110).
""" # noqa: E501

from typing import List
Expand Down Expand Up @@ -28,7 +27,8 @@
pytest.param(
[
DepositTransaction(
# TODO: Use a real public key to allow recovery of the funds.
# TODO: Use a real public key to allow recovery of
# the funds.
requests=[
DepositRequest(
pubkey=0x01,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
abstract: Crafted tests for mainnet of [EIP-7002: Execution layer triggerable withdrawals](https://eips.ethereum.org/EIPS/eip-7002)
Crafted tests for mainnet of [EIP-7002: Execution layer triggerable withdrawals](https://eips.ethereum.org/EIPS/eip-7002).
abstract: Crafted tests for mainnet of [EIP-7002: Execution layer triggerable withdrawals](https://eips.ethereum.org/EIPS/eip-7002).
""" # noqa: E501

from typing import List
Expand Down
3 changes: 1 addition & 2 deletions tests/prague/eip7251_consolidations/test_eip_mainnet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
abstract: Crafted tests for mainnet of [EIP-7251: Increase the MAX_EFFECTIVE_BALANCE](https://eips.ethereum.org/EIPS/eip-7251)
Crafted tests for mainnet of [EIP-7251: Increase the MAX_EFFECTIVE_BALANCE](https://eips.ethereum.org/EIPS/eip-7251).
abstract: Crafted tests for mainnet of [EIP-7251: Increase the MAX_EFFECTIVE_BALANCE](https://eips.ethereum.org/EIPS/eip-7251).
""" # noqa: E501

from typing import List
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
abstract: Crafted tests for mainnet of [EIP-7623: Increase calldata cost](https://eips.ethereum.org/EIPS/eip-7623)
Crafted tests for mainnet of [EIP-7623: Increase calldata cost](https://eips.ethereum.org/EIPS/eip-7623).
abstract: Crafted tests for mainnet of [EIP-7623: Increase calldata cost](https://eips.ethereum.org/EIPS/eip-7623).
""" # noqa: E501

import pytest
Expand Down Expand Up @@ -98,7 +97,10 @@ def test_eip_7623(
pre: Alloc,
tx: Transaction,
) -> None:
"""Test transaction validity for transactions without access lists and contract creation."""
"""
Test transaction validity for transactions without access lists
and contract creation.
"""
state_test(
pre=pre,
post={},
Expand Down
3 changes: 1 addition & 2 deletions tests/prague/eip7702_set_code_tx/test_eip_mainnet.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
abstract: Crafted tests for mainnet of [EIP-7702: Set EOA account code for one transaction](https://eips.ethereum.org/EIPS/eip-7702)
Crafted tests for mainnet of [EIP-7702: Set EOA account code for one transaction](https://eips.ethereum.org/EIPS/eip-7702).
abstract: Crafted tests for mainnet of [EIP-7702: Set EOA account code for one transaction](https://eips.ethereum.org/EIPS/eip-7702).
""" # noqa: E501

import pytest
Expand Down
Loading