Skip to content

Commit

Permalink
Merge pull request #46 from jsign/jsign-fx2
Browse files Browse the repository at this point in the history
verkle: test fix
  • Loading branch information
spencer-tb authored Sep 5, 2024
2 parents 184a221 + 9c4a0d8 commit 53b8fc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/verkle/eip4762_verkle_gas_witness/test_withdrawals.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ def test_withdrawals(blockchain_test: BlockchainTestFiller, fork: str):
}

witness_check = WitnessCheck()
for address in [TestAddress, TestAddress2, env.fee_recipient]:
for address in [TestAddress, TestAddress2]:
witness_check.add_account_full(
address=address,
account=(None if address == env.fee_recipient else pre[address]),
account=pre.get(address),
)

blocks = [
Expand Down

0 comments on commit 53b8fc3

Please sign in to comment.