Merge pull request #3669 from rootzoll/cl-withdraw-patch

cln: use default normal feerate to withdraw all
This commit is contained in:
/rootzoll
2023-03-07 17:27:15 +01:00
committed by GitHub

View File

@@ -97,7 +97,7 @@ echo "******************************"
# execute command # execute command
if [ ${LNTYPE} = "cl" ];then if [ ${LNTYPE} = "cl" ];then
# withdraw destination satoshi [feerate] [minconf] [utxos] # withdraw destination satoshi [feerate] [minconf] [utxos]
command="$lightningcli_alias withdraw ${address} all slow" command="$lightningcli_alias withdraw ${address} all"
elif [ ${LNTYPE} = "lnd" ];then elif [ ${LNTYPE} = "lnd" ];then
command="$lncli_alias sendcoins --sweepall --addr=${address} --conf_target=36" command="$lncli_alias sendcoins --sweepall --addr=${address} --conf_target=36"
fi fi