Skip to content

Commit

Permalink
fix(tests): Fix intermediate state test
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz authored and winsvega committed Jan 20, 2025
1 parent 2115d30 commit 7053c31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down

0 comments on commit 7053c31

Please sign in to comment.