From d56ab85892c67b3d5993ceca1295470411c88603 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Mon, 26 Aug 2024 23:52:42 -0400 Subject: [PATCH] fix: missing await in `all` method (#92) --- eth_portfolio/address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),