Skip to content

Commit 7053c31

Browse files
marioevzwinsvega
authored andcommitted
fix(tests): Fix intermediate state test
1 parent 2115d30 commit 7053c31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/frontier/examples/test_block_intermidiate_state.py renamed to tests/frontier/examples/test_block_intermediate_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def test_block_intermidiate_state(blockchain_test: BlockchainTestFiller, pre: Al
1919
env = Environment()
2020
sender = pre.fund_eoa()
2121

22-
tx = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender)
23-
tx_2 = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender)
22+
tx = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender, protected=False)
23+
tx_2 = Transaction(gas_limit=100_000, to=None, data=b"", sender=sender, protected=False)
2424

2525
block_1 = Block(
2626
txs=[tx],

0 commit comments

Comments
 (0)