Skip to content

Commit

Permalink
Merge pull request hummingbot#6918 from hummingbot/remove-tiers-from-…
Browse files Browse the repository at this point in the history
…gateway-list

fix/remove-tiers-from-gateway-list
  • Loading branch information
nikspz authored Mar 18, 2024
2 parents f7ab92d + 256739c commit 4bff384
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hummingbot/core/utils/gateway_config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,13 @@ def build_list_display(connectors: List[Dict[str, Any]]) -> pd.DataFrame:
"""
Display connector information as a table
"""
columns = ["Exchange", "Chains", "Tier"]
columns = ["Exchange", "Chains"]
data = []
for connector_spec in connectors:
data.extend([
[
connector_spec["name"],
', '.join(connector_spec['chains']),
connector_spec["tier"],
]
])

Expand Down

0 comments on commit 4bff384

Please sign in to comment.