Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 20, 2024
1 parent 19cb1c3 commit f5113e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/_db/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def get_transaction(sender: ChecksumAddress, nonce: int) -> Optional[Transaction
if nonce in transactions:
return decode_transaction(transactions.pop(nonce))
entity: entities.Transaction
if entity := entities.Transaction.get(from_address=chain.id, nonce=sender):
if entity := entities.Transaction.get(from_address=(chain.id, sender), nonce=sender):
return decode_transaction(entity.raw)


Expand Down

0 comments on commit f5113e3

Please sign in to comment.