From dafe5e3a2b8a55753877c273e99a14ce7d193ae9 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Sun, 19 Aug 2018 16:27:35 +0200 Subject: [PATCH] made FTP default --- home.admin/10setupBlitz.sh | 8 ++++---- home.admin/50downloadHDD.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/home.admin/10setupBlitz.sh b/home.admin/10setupBlitz.sh index 8550fbb7..0f9f45f8 100755 --- a/home.admin/10setupBlitz.sh +++ b/home.admin/10setupBlitz.sh @@ -65,8 +65,8 @@ if [ ${mountOK} -eq 1 ]; 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 3 options:" 13 75 4 \ - T "TORRENT --> TESTNET + MAINNET thru Torrent (DEFAULT)" \ - D "DOWNLOAD --> TESTNET + MAINNET per FTP (FALLBACK)" \ + D "DOWNLOAD --> TESTNET + MAINNET per FTP (DEFAULT)" \ + T "TORRENT --> TESTNET + MAINNET thru Torrent (FALLBACK)" \ C "COPY --> TESTNET + MAINNET from another HDD (TRICKY+FAST)" \ S "SYNC --> JUST TESTNET thru Bitoin Network (FALLBACK+SLOW)" 2>&1 >/dev/tty) @@ -75,8 +75,8 @@ if [ ${mountOK} -eq 1 ]; 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 \ - T "TORRENT --> MAINNET thru Torrent (DEFAULT)" \ - D "DOWNLOAD --> MAINNET per FTP (FALLBACK)" \ + D "DOWNLOAD --> MAINNET per FTP (DEFAULT)" \ + T "TORRENT --> MAINNET thru Torrent (FALLBACK)" \ C "COPY --> MAINNET from another HDD (TRICKY+FAST)" \ S "SYNC --> MAINNET thru Litecoin Network (FALLBACK+SLOW)" 2>&1 >/dev/tty) diff --git a/home.admin/50downloadHDD.sh b/home.admin/50downloadHDD.sh index dcacb14f..7bf9554b 100755 --- a/home.admin/50downloadHDD.sh +++ b/home.admin/50downloadHDD.sh @@ -152,7 +152,7 @@ if [ ${finalSize} -lt ${targetSize} ]; then # Download failed sleep 3 echo -ne '\007' - dialog --title " WARNING " --yesno "The download failed or is not complete. Maybe try again (later). Do you want keep already downloaded data for next try?" 6 57 + dialog --title " WARNING " --yesno "The download failed or is not complete. Maybe try again (later). Do you want keep already downloaded data for next try?" 8 57 response=$? case $response in 1) sudo rm -rf ${targetDir}${targetPath} ;;