From e43e61e66bbb0a5fc0d6f302e2891d9cd5a8ed95 Mon Sep 17 00:00:00 2001 From: ejcobi <51966670+ejcobi@users.noreply.github.com> Date: Tue, 30 Jul 2019 16:13:28 +0200 Subject: [PATCH] Update 10setupBlitz.sh Fixed typo that offered one option count more than available. "..choose from these 5 options ..." > "..choose from these 4 options.." --- home.admin/10setupBlitz.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.admin/10setupBlitz.sh b/home.admin/10setupBlitz.sh index 6598d04..34432ac 100755 --- a/home.admin/10setupBlitz.sh +++ b/home.admin/10setupBlitz.sh @@ -196,7 +196,7 @@ if [ ${mountOK} -eq 1 ]; then if [ ${network} = "bitcoin" ]; then echo "Bitcoin Options" menuitem=$(dialog --clear --beep --backtitle "RaspiBlitz" --title "Getting the Blockchain" \ - --menu "You need a copy of the Bitcoin Blockchain - you have 5 options:" 13 75 5 \ + --menu "You need a copy of the Bitcoin Blockchain - you have 4 options:" 13 75 5 \ T "TORRENT --> MAINNET + TESTNET thru Torrent (DEFAULT)" \ C "COPY --> BLOCKCHAINDATA from another node with SCP" \ N "CLONE --> BLOCKCHAINDATA from 2nd HDD (extra cable)"\ @@ -206,7 +206,7 @@ if [ ${mountOK} -eq 1 ]; then elif [ ${network} = "litecoin" ]; then echo "Litecoin Options" menuitem=$(dialog --clear --beep --backtitle "RaspiBlitz" --title "Getting the Blockchain" \ - --menu "You need a copy of the Litecoin Blockchain - you have 3 options:" 13 75 4 \ + --menu "You need a copy of the Litecoin Blockchain - you have 2 options:" 13 75 4 \ T "TORRENT --> MAINNET thru Torrent (DEFAULT)" \ S "SYNC --> MAINNET thru Litecoin Network (FALLBACK+SLOW)" 2>&1 >/dev/tty)