From 1448435b066c8c3b1a6fb13234f90a039b16081f Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 29 Jan 2026 08:40:37 -0800 Subject: [PATCH] =?UTF-8?q?chore(mining-app):=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E5=8F=91=E9=80=81=E9=A1=B5=E9=9D=A2=E8=B0=83=E8=AF=95=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../pages/asset/send_shares_page.dart | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart b/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart index fe640fb6..033be0f3 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart @@ -48,27 +48,6 @@ class _SendSharesPageState extends ConsumerState { final availableCash = assetAsync.valueOrNull?.availableCash ?? '0'; - // Debug: 打印资产数据 - debugPrint('=== SendSharesPage 资产数据 ==='); - debugPrint('user.isLoggedIn: ${user.isLoggedIn}'); - debugPrint('user.phone: ${user.phone}'); - debugPrint('accountSequence: $accountSequence'); - debugPrint('assetAsync.hasValue: ${assetAsync.hasValue}'); - debugPrint('assetAsync.hasError: ${assetAsync.hasError}'); - if (assetAsync.hasError) { - debugPrint('assetAsync.error: ${assetAsync.error}'); - } - if (assetAsync.hasValue && assetAsync.value != null) { - final asset = assetAsync.value!; - debugPrint('availableCash: ${asset.availableCash}'); - debugPrint('cashBalance: ${asset.cashBalance}'); - debugPrint('frozenCash: ${asset.frozenCash}'); - debugPrint('availableShares: ${asset.availableShares}'); - debugPrint('shareBalance: ${asset.shareBalance}'); - } - debugPrint('最终 availableCash: $availableCash'); - debugPrint('=============================='); - return Scaffold( backgroundColor: _bgGray, appBar: AppBar(