Skip to content

Commit

Permalink
fix: missing await in all method (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 27, 2024
1 parent 974a68e commit d56ab85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth_portfolio/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ async def all(self, start_block: Block, end_block: Block) -> Dict[str, PandableL
Examples:
>>> all_entries = await address.all(12000000, 12345678)
"""
return a_sync.gather({
return await a_sync.gather({
"transactions": self.transactions.get(start_block, end_block, sync=False),
"internal_transactions": self.internal_transfers.get(start_block, end_block, sync=False),
"token_transfers": self.token_transfers.get(start_block, end_block, sync=False),
Expand Down

0 comments on commit d56ab85

Please sign in to comment.