From 51434182c99213b7c570cfa86d7fe369177dc92a Mon Sep 17 00:00:00 2001 From: everoddandeven Date: Tue, 12 Nov 2024 00:52:31 +0100 Subject: [PATCH] Minor fixes --- .../pages/settings/settings.component.html | 31 +++++++++---------- src/common/DaemonInfo.ts | 2 +- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/src/app/pages/settings/settings.component.html b/src/app/pages/settings/settings.component.html index cb72c0a..f05b236 100644 --- a/src/app/pages/settings/settings.component.html +++ b/src/app/pages/settings/settings.component.html @@ -519,26 +519,25 @@ External port for p2p network protocol (if port forwarding used with NAT) -
+
-
-

IPv6

+
+

IPv6

+ +
+ + + Specify IPv6 address to bind RPC server +
+ +
+ + + 18080 for mainnet, 28080 for testnet, 38080 for stagenet +
-
- - - Specify IPv6 address to bind RPC server
-
- - - 18080 for mainnet, 28080 for testnet, 38080 for stagenet -
- -
- -
diff --git a/src/common/DaemonInfo.ts b/src/common/DaemonInfo.ts index 80148df..971824a 100644 --- a/src/common/DaemonInfo.ts +++ b/src/common/DaemonInfo.ts @@ -60,7 +60,7 @@ export class DaemonInfo { } public get gigaHashRate(): number { - return this.hashRate / 1000; + return this.megaHashRate / 1000; } public get coreSynchronized(): boolean {