From f6fc9b1f5cb2b4d9c5f0b5defffa7193e562d976 Mon Sep 17 00:00:00 2001 From: wangruidong <940853815@qq.com> Date: Wed, 19 Mar 2025 18:28:51 +0800 Subject: [PATCH] fix: Update account status to confirmed --- apps/accounts/risk_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/accounts/risk_handlers.py b/apps/accounts/risk_handlers.py index da0fd654b..3472dc492 100644 --- a/apps/accounts/risk_handlers.py +++ b/apps/accounts/risk_handlers.py @@ -193,5 +193,5 @@ class RiskHandler: ( GatheredAccount.objects .filter(asset=self.asset, username=self.username) - .update(present=True) + .update(present=True, status=ConfirmOrIgnore.confirmed) )