diff --git a/pages/performance/index.tsx b/pages/performance/index.tsx index 860607f..7c7e9ed 100644 --- a/pages/performance/index.tsx +++ b/pages/performance/index.tsx @@ -55,9 +55,9 @@ export default function Performance() {
Node - throughput: {network?.txApplied ? network?.txApplied + ' TPS' : '-'}
-
Transaction processed: {nullPlaceholder(nodeStatus.performance?.transactionsCount)}
-
State storage usage: {nullPlaceholder(nodeStatus.performance?.stateStorage)}
+ throughput: {Number.isFinite(network?.txApplied) ? network?.txApplied + ' TPS' : '-'}
+
Transaction processed: {Number.isFinite(network?.txProcessed) ? network?.txProcessed : '-'}
+ {/*
State storage usage: {nullPlaceholder(nodeStatus.performance?.stateStorage)}
*/}