Skip to content

Commit 0a27369

Browse files
authored
Fix/lightning tab (#47)
* only enable lightning tab if configured * update release notes
1 parent 5f7d71a commit 0a27369

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docker_entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ _term() {
1010

1111
# FRONTEND SETUP
1212

13-
LIGHTNING_DETECTED_PORT=9735
13+
if [ "$(yq e ".lightning.type" /root/start9/config.yaml)" != "none" ]; then
14+
LIGHTNING_DETECTED_PORT=9735
15+
fi
1416
__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__=${BACKEND_MAINNET_HTTP_HOST:=127.0.0.1}
1517
__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__=${BACKEND_MAINNET_HTTP_PORT:=8999}
1618
__MEMPOOL_FRONTEND_HTTP_PORT__=${FRONTEND_HTTP_PORT:=8080}

manifest.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ id: mempool
22
title: Mempool
33
version: 3.2.1.3
44
release-notes: |
5+
* Fix bug where lightning tab appeared even when disabled
56
* Add Fulcrum as optinal indexer
67
license: AGPL
78
wrapper-repo: "https://github.com/Start9Labs/mempool-wrapper"

0 commit comments

Comments
 (0)