Skip to content

Commit

Permalink
Fix: Solve again the issue with the aggregate.
Browse files Browse the repository at this point in the history
  • Loading branch information
nesitor committed Jul 23, 2024
1 parent 34efd98 commit 26efc53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph_vrf/coordinator/executor_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async def _get_unauthorized_nodes(self, unauthorized_nodes_list_path: Optional[P
aggregate_unauthorized_list = []
aggregate_address = self.aggregate_address or settings.VRF_AGGREGATE_ADDRESS
if aggregate_address:
aggregate_unauthorized_list = await _get_unauthorized_node_list_aggregate(settings.aggregate_address)
aggregate_unauthorized_list = await _get_unauthorized_node_list_aggregate(aggregate_address)

file_unauthorized_nodes_list = self._get_unauthorized_nodes_file(
unauthorized_nodes_list_path=unauthorized_nodes_list_path
Expand Down

0 comments on commit 26efc53

Please sign in to comment.