From 7053c31281ee77b13a25186cd8db64e3095c6b49 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Fri, 17 Jan 2025 15:59:16 +0000 Subject: [PATCH] fix(tests): Fix intermediate state test --- ...intermidiate_state.py => test_block_intermediate_state.py} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename tests/frontier/examples/{test_block_intermidiate_state.py => test_block_intermediate_state.py} (95%) diff --git a/tests/frontier/examples/test_block_intermidiate_state.py b/tests/frontier/examples/test_block_intermediate_state.py similarity index 95% rename from tests/frontier/examples/test_block_intermidiate_state.py rename to tests/frontier/examples/test_block_intermediate_state.py index c1277c67c8..299134173b 100644 --- a/tests/frontier/examples/test_block_intermidiate_state.py +++ b/tests/frontier/examples/test_block_intermediate_state.py @@ -19,8 +19,8 @@ def test_block_intermidiate_state(blockchain_test: BlockchainTestFiller, pre: Al env = Environment() sender = pre.fund_eoa() - tx = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender) - tx_2 = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender) + tx = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender, protected=False) + tx_2 = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender, protected=False) block_1 = Block( txs=[tx],