fix(mining-app): 全网兑换销毁量改为保留8位小数
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c293309bdf
commit
19f350b8e3
|
|
@ -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('全网兑换销毁量', formatDecimal(market.circulationPool, 4), darkText, grayText),
|
_buildBurnDetailRow('全网兑换销毁量', formatDecimal(market.circulationPool, 8), darkText, grayText),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue