Skip to content

Commit

Permalink
fix int-string concat casting (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBesson authored Nov 14, 2023
1 parent 22abbb6 commit 1e66095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/network_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def list_parachains():
para_name = parachains[para_id]['name']
para_location = parachains[para_id]['location']
else:
para_name = relay_chain_network_name + '-para-' + para_id
para_name = f'{relay_chain_network_name}-para-{str(para_id)}'
para_location = 'external'
parachains[para_id] = {
'name': para_name,
Expand Down

0 comments on commit 1e66095

Please sign in to comment.