Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Update tests/src/utils/test_eth_transaction.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter authored Aug 27, 2024
1 parent 6682009 commit a0bbc62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/utils/test_eth_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def test_should_decode_all_transactions_types(
assert expected_to == decoded_tx["destination"]
assert transaction["value"] == int(decoded_tx["amount"], 16)
# pre-eip155 txs have an internal chain_id set to 0 in the decoded tx
assert transaction.get("chainId", None) == decoded_tx["chain_id"]
assert transaction.get("chainId") == decoded_tx["chain_id"]
assert expected_data == decoded_tx["payload"]
assert expected_access_list == decoded_tx["access_list"]

Expand Down

0 comments on commit a0bbc62

Please sign in to comment.