From cd32dff7797303f1b9dd83993fcd904ea0c680ff Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Thu, 24 Aug 2023 17:59:17 +0000 Subject: [PATCH] Narrowing down --- core/exchanges/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/exchanges/common.py b/core/exchanges/common.py index db1dc87..e8310ca 100644 --- a/core/exchanges/common.py +++ b/core/exchanges/common.py @@ -12,6 +12,8 @@ def get_balance_hook(user_id, user_name, account_id, account_name, balance): Called every time the balance is fetched on an account. Store this into Elasticsearch. """ + print("get_balance_hook start") + print("PARAMS", user_id, user_name, account_id, account_name, balance) store_msg( "balances", { @@ -22,6 +24,7 @@ def get_balance_hook(user_id, user_name, account_id, account_name, balance): "balance": balance, }, ) + print("get_balance_hook end") def get_pair(account, base, quote, invert=False):