Skip to content

Commit

Permalink
fix: failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
petscheit committed Oct 3, 2024
1 parent a159485 commit 87b1024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/test_tx_decoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def fetch_tx(tx_hash):

def fetch_transaction_dict(tx_hash):
tx = fetch_tx(tx_hash)
assert tx_hash == "0x" + tx.hash().hex(), "TX hashes do not match!"
assert tx_hash == tx.hash().hex(), "TX hashes do not match!"
rlp = bytes_to_8_bytes_chunks_little(tx.raw_rlp())
tx_dict = {
"rlp": rlp,
Expand Down

0 comments on commit 87b1024

Please sign in to comment.