|
|
@@ -698,10 +698,9 @@ class ArbitrageProcess:
|
|
|
buy_value = self.buy_value
|
|
|
|
|
|
# 最終判斷
|
|
|
- # logger.info(f'buy_value {buy_value}, asset_balance {asset_balance}, pending_amount {pending_amount}')
|
|
|
if buy_value + asset_balance > pending_amount:
|
|
|
last_deposit_state_formated = pformat(last_deposit_state, indent=2)
|
|
|
- msg = f"【flash】资产可以進行快速提現。\n{last_deposit_state_formated}"
|
|
|
+ msg = f"【flash】资产可以進行快速提現。\nbuy_value {buy_value}, asset_balance {asset_balance}, pending_amount {pending_amount}\n{last_deposit_state_formated}"
|
|
|
logger.info(msg)
|
|
|
add_state_flow_entry(self.process_item, self.current_state, msg, "success")
|
|
|
|