diff --git a/eth_portfolio/address.py b/eth_portfolio/address.py index 94a09a1f..9d5adbf0 100644 --- a/eth_portfolio/address.py +++ b/eth_portfolio/address.py @@ -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),