Skip to content

Commit

Permalink
disable temporarily 7709 tests
Browse files Browse the repository at this point in the history
Signed-off-by: Ignacio Hagopian <[email protected]>
  • Loading branch information
jsign committed Sep 13, 2024
1 parent cfa073f commit 3abe304
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import pytest

from ethereum_test_forks import Verkle
from ethereum_test_tools import (
Account,
Address,
Expand All @@ -31,6 +32,7 @@


@pytest.mark.valid_from("Verkle")
@pytest.mark.skip(reason="Not fully implemented")
@pytest.mark.parametrize(
"block_num_target",
[
Expand All @@ -56,6 +58,7 @@ def test_blockhash(blockchain_test: BlockchainTestFiller, block_num_target: int)


@pytest.mark.valid_from("Verkle")
@pytest.mark.skip(reason="Not fully implemented")
def test_blockhash_insufficient_gas(blockchain_test: BlockchainTestFiller):
"""
Test BLOCKHASH with insufficient gas.
Expand Down Expand Up @@ -91,7 +94,7 @@ def _blockhash(
gas_price=10,
)

witness_check = WitnessCheck()
witness_check = WitnessCheck(fork=Verkle)
for address in [env.fee_recipient, TestAddress, TestAddress2]:
witness_check.add_account_full(
address=address,
Expand Down

0 comments on commit 3abe304

Please sign in to comment.