diff --git a/web/index.html b/web/index.html
index 0230298..f288860 100644
--- a/web/index.html
+++ b/web/index.html
@@ -165,52 +165,57 @@
Bitcoin watch-only wallet monitoring and label management
-
- Munin service
-
-
- Checking...
-
-
+
+ Munin service
+
+
+ Checking...
+
+
-
- Fulcrum (Electrum server)
-
-
- Checking...
-
-
+
+ Fulcrum (Electrum server)
+
+
+ Checking...
+
+
-
- Fulcrum endpoint
- Checking...
-
-
+
+ Fulcrum endpoint
+ Checking...
+
-
-
- Wallet
- Not configured
-
+
+ Blockchain height
+ Checking...
+
+
-
- Labels
- 0
-
+
+
+ Wallet
+ Not configured
+
-
- Transactions
- 0
-
+
+ Labels
+ 0
+
-
- Last scan
- Never
-
+
+ Transactions
+ 0
+
-
+
+ Last scan
+ Never
+
-
+
+
+
@@ -303,6 +308,9 @@
document.getElementById('fulcrum-url').textContent =
fulcrum.url || 'Not configured';
+ document.getElementById('blockchain-height').textContent =
+ fulcrum.blockchainHeight ?? 'Unavailable';
+
document.getElementById('wallet').textContent =
status.wallet || 'Not configured';
@@ -328,6 +336,7 @@
);
document.getElementById('fulcrum-url').textContent = 'Unavailable';
+ document.getElementById('blockchain-height').textContent = 'Unavailable';
errorElement.textContent = 'Unable to retrieve service status.';
}
}