diff --git a/index.html b/index.html
index c644715..40f0993 100644
--- a/index.html
+++ b/index.html
@@ -252,7 +252,6 @@ footer a{color:var(--accent);text-decoration:none}
Info |
Fee |
Version |
- Balance |
Height |
Wins |
Score |
@@ -382,7 +381,7 @@ function render() {
tb.innerHTML = ""; ml.innerHTML = "";
if (!list.length) {
- tb.innerHTML = '| No servers found. |
';
+ tb.innerHTML = '| No servers found. |
';
}
list.forEach((d, i) => {
@@ -396,7 +395,6 @@ function render() {
${DOMPurify.sanitize(d.info||'—')} |
${fmt(d.base_fee)} |
${DOMPurify.sanitize(d.version||'—')} |
- ${fmt(d.balance)} |
${fmt(d.last_block)} |
${d.count_win != null ? d.count_win : '—'} |
${fmt(d.points)} |
@@ -411,7 +409,6 @@ function render() {
Score${fmt(d.points)}
Wins${d.count_win != null ? d.count_win : '—'}
Fee${fmt(d.base_fee)} sat
- Balance${fmt(d.balance)}
Version${DOMPurify.sanitize(d.version||'—')}
Height${fmt(d.last_block)}