fix(mining-app): 全网兑换销毁量保留4位小数

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-26 09:53:47 -08:00
parent a39af93063
commit c293309bdf
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
children: [ children: [
_buildBurnDetailRow('系统总销毁量', formatIntWithCommas(market.blackHoleAmount), darkText, grayText), _buildBurnDetailRow('系统总销毁量', formatIntWithCommas(market.blackHoleAmount), darkText, grayText),
const SizedBox(height: 16), const SizedBox(height: 16),
_buildBurnDetailRow('全网兑换销毁量', formatWithCommas(market.circulationPool), darkText, grayText), _buildBurnDetailRow('全网兑换销毁量', formatDecimal(market.circulationPool, 4), darkText, grayText),
], ],
), ),
actions: [ actions: [