From dd747a10deb10272167e40eeb9a654e4b1af6990 Mon Sep 17 00:00:00 2001 From: OWL Date: Tue, 26 May 2026 22:35:48 +0200 Subject: [PATCH] Fix exchange.py syntax error and implement genesis sync-from-hub --- cli/aitbc_cli/commands/exchange.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/aitbc_cli/commands/exchange.py b/cli/aitbc_cli/commands/exchange.py index 6c8336ed..fa3dbbc3 100755 --- a/cli/aitbc_cli/commands/exchange.py +++ b/cli/aitbc_cli/commands/exchange.py @@ -877,6 +877,8 @@ def pairs(ctx, exchange: str): if len(base_currencies[base]) > 10: success(f" ... and {len(base_currencies[base]) - 10} more") + except Exception as e: + error(f"Error fetching pairs: {e}") @exchange.command()