dsfsdf
This commit is contained in:
@@ -2573,7 +2573,7 @@
|
|||||||
h(StatCard, {
|
h(StatCard, {
|
||||||
key: 'coins',
|
key: 'coins',
|
||||||
label: `${currentCoinCurrency} im Miner`,
|
label: `${currentCoinCurrency} im Miner`,
|
||||||
value: latest ? fmtNumber(latest.coins_total_visible || latest.coins_total, 6) : 'n/a',
|
value: latest ? fmtNumber(latest.coins_total_visible ?? latest.coins_total, 6) : 'n/a',
|
||||||
sub: latest ? `Stand ${fmtDate(latest.measured_at)}` : '',
|
sub: latest ? `Stand ${fmtDate(latest.measured_at)}` : '',
|
||||||
}),
|
}),
|
||||||
h(StatCard, {
|
h(StatCard, {
|
||||||
@@ -2581,7 +2581,7 @@
|
|||||||
label: `Theoretischer Bestand ${currentCoinCurrency}`,
|
label: `Theoretischer Bestand ${currentCoinCurrency}`,
|
||||||
value: payload?.summary?.payouts ? fmtNumber(holdingsCurrentAsset, 6) : 'n/a',
|
value: payload?.summary?.payouts ? fmtNumber(holdingsCurrentAsset, 6) : 'n/a',
|
||||||
sub: payload?.summary?.payouts
|
sub: payload?.summary?.payouts
|
||||||
? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible || latest?.coins_total, 6)} ${currentCoinCurrency}`
|
? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible ?? latest?.coins_total, 6)} ${currentCoinCurrency}`
|
||||||
: '',
|
: '',
|
||||||
}),
|
}),
|
||||||
h(StatCard, {
|
h(StatCard, {
|
||||||
|
|||||||
Reference in New Issue
Block a user