From 2c35668cc376e952d116cbd7a7c615536cf31f11 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Sun, 26 Jan 2020 21:52:00 +0100 Subject: [PATCH] Basic Electrum Connect Infos --- home.admin/00mainMenu.sh | 2 +- home.admin/config.scripts/bonus.electrs.sh | 17 ++++++++++++++--- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/home.admin/00mainMenu.sh b/home.admin/00mainMenu.sh index 4d957e238..f4381245b 100755 --- a/home.admin/00mainMenu.sh +++ b/home.admin/00mainMenu.sh @@ -42,7 +42,7 @@ fi # Basic Options OPTIONS+=(INFO "RaspiBlitz Status Screen") -OPTIONS+=(FUNDING "Fund your on-chain Wallet") +OPTIONS+=(FUNDING "Fund your LND Wallet") OPTIONS+=(CONNECT "Connect to a Peer") OPTIONS+=(CHANNEL "Open a Channel with Peer") if [ "${chain}" = "main" ]; then diff --git a/home.admin/config.scripts/bonus.electrs.sh b/home.admin/config.scripts/bonus.electrs.sh index e9847d4ba..9af1ca492 100644 --- a/home.admin/config.scripts/bonus.electrs.sh +++ b/home.admin/config.scripts/bonus.electrs.sh @@ -84,6 +84,7 @@ fi if [ "$1" = "menu" ]; then # get status + echo "# collecting status info ... (please wai)" source <(sudo /home/admin/config.scripts/bonus.electrs.sh status) if [ ${serviceInstalled} -eq 0 ]; then @@ -115,7 +116,7 @@ This can take multiple hours. OPTIONS=( \ CONNECT "How to Connect" \ INDEX "Delete/Rebuild Index" \ - STATUS "Debug Status Info" + STATUS "ElectRS Status Info" ) CHOICE=$(whiptail --clear --title "Electrum Rust Server" --menu "menu" 8 50 7 "${OPTIONS[@]}" 2>&1 >/dev/tty) @@ -124,13 +125,23 @@ This can take multiple hours. case $CHOICE in CONNECT) echo "######## How to Connect to Electrum Rust Server #######" - + echo + echo "Install the Electrum Wallet App on your laptop from:" + echo "https://electrum.org" + echo + echo "On Network Settings > Server menu:" + echo "- deavtivate automatic server selection" + echo "- as manual server set '${localIP}' & '${portHTTPS}'" + echo "- laptop and RaspiBlitz need to be within same local network" + echo + echo "For more details check the RaspiBlitz README on ElectRS:" + echo "https://github.com/rootzoll/raspiblitz" echo echo "Press ENTER to get back to main menu." read key ;; STATUS) - echo "######## Electrum Rust Server Debug Info ########" + echo "######## Electrum Rust Server Status Info ########" sudo /home/admin/config.scripts/bonus.electrs.sh status echo echo "Press ENTER to get back to main menu."