remove while

This commit is contained in:
Christian Rotzoll
2019-04-16 04:06:42 +01:00
parent 09e17f68d6
commit 9bf2490256

View File

@@ -207,14 +207,10 @@ if [ ${walletExists} -eq 0 ]; then
echo "choice($CHOICE)"
if [ "${CHOICE}" == "ONLYSEED" ] || [ "${CHOICE}" == "SEED+SCB" ]; then
# enter SEED words
wordstring=""
while [ ${#wordstring} -eq 0 ]
do
echo "ENTER SEED"
# dialog to enter
#$_temp="/home/admin/.seed.tmp"
wordstring=$(dialog --backtitle "RaspiBlitz - LND Recover" --inputbox "Please enter/paste the SEED WORD LIST:\n(just the words, seperated by commas, in correct order as numbered)" 9 78)
wordstring=$(whiptail --backtitle "RaspiBlitz - LND Recover" --inputbox "Please enter/paste the SEED WORD LIST:\n(just the words, seperated by commas, in correct order as numbered)" 9 78)
#wordstring=$( cat $_temp | tr -dc '[:alnum:]-.' | tr -d ' ' )
#shred $_temp
echo "processing ..."
@@ -234,8 +230,7 @@ if [ ${walletExists} -eq 0 ]; then
wordstring=""
exit 1
fi
sleep 3
done
fi
if [ "${CHOICE}" == "ONLYSEED" ]; then