From dbd0c4e28f323b169da552d433586f80c73e7189 Mon Sep 17 00:00:00 2001 From: Nawaz Haider Date: Fri, 2 Jan 2026 12:56:52 +0600 Subject: [PATCH] Refactor client initialization to use global client setup in get_client and get_client_creds functions --- utils/clob_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/clob_client.py b/utils/clob_client.py index 1b2d246..ed77c94 100644 --- a/utils/clob_client.py +++ b/utils/clob_client.py @@ -46,11 +46,11 @@ def is_client_ready(): def get_client(): if _client is None: - init_clob_client() + init_global_client() return _client def get_client_creds(): if _client_creds is None: - init_clob_client() + init_global_client() return _client_creds