From 639f9cde8d9f02998fd2fef24f6b9e8f5b90e367 Mon Sep 17 00:00:00 2001 From: Ignacio Hagopian Date: Mon, 1 Jul 2024 15:02:20 -0300 Subject: [PATCH] osaka: fixes Signed-off-by: Ignacio Hagopian --- .../osaka/eip4762_verkle_gas_witness/test_extcodehash.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/osaka/eip4762_verkle_gas_witness/test_extcodehash.py b/tests/osaka/eip4762_verkle_gas_witness/test_extcodehash.py index 9e1fc6dc40..52ff04a126 100644 --- a/tests/osaka/eip4762_verkle_gas_witness/test_extcodehash.py +++ b/tests/osaka/eip4762_verkle_gas_witness/test_extcodehash.py @@ -101,16 +101,16 @@ def test_extcodehash_insufficient_gas( blockchain_test: BlockchainTestFiller, fork: str, gas_limit: int, - witness_has_basic_data, - witness_has_codehash, + witness_assert_basic_data, + witness_assert_codehash, ): """ Test EXTCODEHASH with insufficient gas. """ witness = Witness() - if witness_has_basic_data: + if witness_assert_basic_data: witness.add_account_basic_data(ExampleAddress, ExampleAccount) - if witness_has_codehash: + if witness_assert_codehash: witness.add_account_codehash(ExampleAddress, Hash(keccak256(ExampleAccount.code))) _extcodehash(blockchain_test, fork, ExampleAddress, witness, gas_limit, fails=True)