Update nucypher/blockchain/eth/actors.py

Co-authored-by: Derek Pierre <derek.pierre@gmail.com>
pull/3496/head
KPrasch 2024-05-31 18:03:21 +02:00
parent d7aaf43f8c
commit f511ea37f6
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ class Operator(BaseActor):
_CONDITION_CHAINS[chain_id] for chain_id in providers
)
self.log.info(
f"Connected to {len(providers.values())} RPC endpoints for condition "
f"Connected to {sum(len(v) for v in providers.values())} RPC endpoints for condition "
f"checking on chain IDs {humanized_chain_ids}"
)