From 6288f7a349b9760cf520e8acc43e10416f1e6432 Mon Sep 17 00:00:00 2001 From: Ignacio Hagopian Date: Thu, 10 Oct 2024 14:28:17 -0300 Subject: [PATCH] eip4762: remove test that we wont fill Signed-off-by: Ignacio Hagopian --- .../test_creates.py | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/tests/verkle/eip4762_verkle_gas_witness/test_creates.py b/tests/verkle/eip4762_verkle_gas_witness/test_creates.py index 97555f8878..5cc39833ce 100644 --- a/tests/verkle/eip4762_verkle_gas_witness/test_creates.py +++ b/tests/verkle/eip4762_verkle_gas_witness/test_creates.py @@ -199,32 +199,6 @@ def test_insufficient_gas_creates( ) -@pytest.mark.valid_from("Verkle") -@pytest.mark.skip("Pending TBD gas limits") -@pytest.mark.parametrize( - "create_instruction, gas_limit", - [ - (Op.CREATE, "TBD"), - (Op.CREATE2, "TBD"), - ], -) -def test_create_static_cost( - blockchain_test: BlockchainTestFiller, - create_instruction, - gas_limit, -): - """ - Test *CREATE with insufficient gas to pay for static cost. - """ - _create( - blockchain_test, - create_instruction, - Op.PUSH0 * (129 * 31 + 42), - value=0, - gas_limit=gas_limit, - ) - - @pytest.mark.valid_from("Verkle") @pytest.mark.parametrize( "create_instruction",