2018-08-23 17:59:35 +02:00
#!/bin/bash
2018-08-23 18:13:31 +02:00
_temp = " ./download/dialog. $$ "
_error = "./.error.out"
2018-08-23 17:59:35 +02:00
2018-12-03 17:02:32 +01:00
echo "please wait ..."
2018-12-03 16:16:12 +01:00
# load raspiblitz config data (with backup from old config)
2019-02-02 23:49:04 +01:00
source /home/admin/raspiblitz.info
source /mnt/hdd/raspiblitz.conf
2018-12-03 16:16:12 +01:00
if [ ${# network } -eq 0 ] ; then network = ` cat .network` ; fi
2019-01-25 21:56:24 +01:00
if [ ${# network } -eq 0 ] ; then network = "bitcoin" ; fi
2018-12-03 16:16:12 +01:00
if [ ${# chain } -eq 0 ] ; then
chain = $( ${ network } -cli -datadir= /home/bitcoin/.${ network } getblockchaininfo | jq -r '.chain' )
fi
2018-08-23 17:59:35 +02:00
2018-12-03 16:16:12 +01:00
# check if user has money in lightning channels - info about close all
2018-12-20 20:11:02 +01:00
openChannels = $( lncli --chain= ${ network } --network= ${ chain } net listchannels 2>/dev/null | jq '.[] | length' )
2018-12-03 16:16:12 +01:00
if [ ${# openChannels } -eq 0 ] ; then
2018-12-03 17:02:32 +01:00
clear
2018-12-03 16:16:12 +01:00
echo "*** IMPORTANT **********************************"
echo "It looks like LND is not responding."
echo "Still starting up, is locked or is not running?"
echo "Try later, try reboot or check ./XXdebugLogs.sh"
echo "************************************************"
2019-04-15 23:53:29 +01:00
echo "Press ENTER to return to main menu."
read key
2018-12-03 16:16:12 +01:00
exit 1
fi
2019-04-15 19:17:17 +01:00
2018-12-03 16:16:12 +01:00
if [ ${ openChannels } -gt 0 ] ; then
2019-04-15 22:21:27 +01:00
whiptail --title 'Info' --yes-button= 'Cashout Anyway' --no-button= 'Go Back' --yesno 'You still have funds in open Lightning Channels.\nUse CLOSEALL first if you want to cashout all funds.\nNOTICE: Just confirmed on-chain funds can be moved' 10 56
if [ $? -eq 1 ] ; then
exit 1
fi
2019-04-15 22:32:47 +01:00
echo "..."
2018-12-03 16:16:12 +01:00
fi
2018-08-23 17:59:35 +02:00
2018-12-03 16:16:12 +01:00
# check if money is waiting to get confirmed
2018-12-20 20:11:02 +01:00
unconfirmed = $( lncli --chain= ${ network } --network= ${ chain } net walletbalance | grep '"unconfirmed_balance"' | cut -d '"' -f4)
2018-12-03 16:16:12 +01:00
if [ ${ unconfirmed } -gt 0 ] ; then
2019-04-16 00:00:26 +01:00
whiptail --title 'Info' --yes-button= 'Cashout Anyway' --no-button= 'Go Back' --yesno "Still waiting confirmation for (some of) your funds.\nNOTICE: Just confirmed on-chain funds can be moved." 8 58
2019-04-15 22:21:27 +01:00
if [ $? -eq 1 ] ; then
exit 1
fi
2019-04-15 22:32:47 +01:00
echo "..."
2018-12-03 16:16:12 +01:00
fi
2018-08-23 17:59:35 +02:00
# let user enter the address
2018-12-03 20:41:16 +01:00
l1 = "Enter on-chain address to send confirmed funds to:"
2019-04-15 22:32:47 +01:00
dialog --title "Where to send funds?" --inputbox " \n $l1 \n " 9 75 2>$_temp
2018-12-03 16:59:45 +01:00
if test $? -eq 0
then
echo "ok pressed"
else
echo "cancel pressed"
exit 1
fi
2018-08-23 17:59:35 +02:00
address = $( cat $_temp | xargs)
shred $_temp
if [ ${# address } -eq 0 ] ; then
echo " FAIL - not a valid address ( ${ address } ) "
2019-04-15 23:53:29 +01:00
echo "Press ENTER to return to main menu."
read key
2018-08-23 17:59:35 +02:00
exit 1
fi
clear
echo "******************************"
2019-04-15 22:32:47 +01:00
echo "Sweep all possible Funds"
2018-08-23 17:59:35 +02:00
echo "******************************"
2018-12-03 21:32:29 +01:00
2019-04-15 19:17:17 +01:00
# execute command
2019-04-15 22:46:04 +01:00
command = " lncli --chain= ${ network } --network= ${ chain } net sendcoins --sweepall --addr= ${ address } --conf_target=6 "
2019-04-15 19:17:17 +01:00
echo " $command "
result = $( $command 2>$_error )
error = ` cat ${ _error } `
2019-04-15 22:32:47 +01:00
echo ""
2019-04-15 22:46:04 +01:00
if [ ${# error } -gt 0 ] ; then
2019-04-15 22:32:47 +01:00
echo " FAIL: $error "
2019-04-15 19:17:17 +01:00
echo ""
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
2019-04-15 22:32:47 +01:00
echo "FAIL --> Was not able to send transaction (see error above)"
2019-04-15 19:17:17 +01:00
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
2019-04-15 22:32:47 +01:00
else
echo " Result: $result "
2019-04-15 19:17:17 +01:00
echo ""
echo "********************************************************************"
2019-04-15 22:32:47 +01:00
fi
2018-08-23 17:59:35 +02:00
echo ""
2019-04-15 23:53:29 +01:00
echo "Press ENTER to return to main menu."
read key