fix(mining-app): 全网兑换销毁量保留4位小数
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a39af93063
commit
c293309bdf
|
|
@ -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: [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue