mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-27 20:16:22 +02:00
remove while
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user