Skip to content

Commit

Permalink
fixed broken log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ijonas committed Feb 3, 2024
1 parent b83142c commit ada56b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contract_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def analyse_fluxmon_contracts(cfg, contracts):
f"Analysing contract {contract['code']} on {contract['network']}")
chain = network(cfg['general']['networks'], contract['network'])
if network is not None:
logging.info(f"Connecting to {contract['rpc']}...")
logging.info(f"Connecting to {chain['rpc']}...")
w3 = Web3(Web3.HTTPProvider(chain["rpc"]))

if w3.is_connected():
Expand Down

0 comments on commit ada56b4

Please sign in to comment.