Skip to content

Commit

Permalink
Update ct-app/core/core.py
Browse files Browse the repository at this point in the history
Co-authored-by: Tibor <[email protected]>
  • Loading branch information
jeandemeusy and Teebor-Choka authored Mar 5, 2024
1 parent b840e68 commit fa2b8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ct-app/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def network_nodes(self) -> list[Node]:

@property
async def network_nodes_addresses(self) -> list[Address]:
return [await node.address.get() for node in self.network_nodes]
return await asyncio.gather(*[node.address.get() for node in self.network_nodes])

@property
def safes_balance_subgraph_type(self) -> SubgraphType:
Expand Down

0 comments on commit fa2b8f0

Please sign in to comment.