diff --git a/docker_entrypoint.sh b/docker_entrypoint.sh index 0e7c5c2..ba83f00 100755 --- a/docker_entrypoint.sh +++ b/docker_entrypoint.sh @@ -10,7 +10,9 @@ _term() { # FRONTEND SETUP -LIGHTNING_DETECTED_PORT=9735 +if [ "$(yq e ".lightning.type" /root/start9/config.yaml)" != "none" ]; then + LIGHTNING_DETECTED_PORT=9735 +fi __MEMPOOL_BACKEND_MAINNET_HTTP_HOST__=${BACKEND_MAINNET_HTTP_HOST:=127.0.0.1} __MEMPOOL_BACKEND_MAINNET_HTTP_PORT__=${BACKEND_MAINNET_HTTP_PORT:=8999} __MEMPOOL_FRONTEND_HTTP_PORT__=${FRONTEND_HTTP_PORT:=8080} diff --git a/manifest.yaml b/manifest.yaml index 7428e00..01f2ef4 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -2,6 +2,7 @@ id: mempool title: Mempool version: 3.2.1.3 release-notes: | + * Fix bug where lightning tab appeared even when disabled * Add Fulcrum as optinal indexer license: AGPL wrapper-repo: "https://github.com/Start9Labs/mempool-wrapper"